[twitter-dev] Re: Twitter client to get updates

2010-09-18 Thread ram
I would like to show the consumers his notifications ( tweets of people he follows ) when he logs in to our portal. Is there a Daemon client available already; in Perl or Java preferably. I am pretty new to any API access on twitter. Also apparently from the dev.twitter site there are no

Re: [twitter-dev] Error posting _ to twitter using statuses/update

2010-09-18 Thread Tom van der Woerdt
Just checked your Base String in my OAuth Base String Validator (http://quonos.nl/oauthTester/), you apparently use too much URL encoding on the status= part of the Base String. If I replace the %255F with %5F, it doesn't give an error. ;-) (Don't ask me why. It just does) Tom On 9/18/10 2:28

[twitter-dev] Re: API doesn't respond to my status update request. JS - XmlHTTPRequest.

2010-09-18 Thread Kakysha
Yes, of course. The oAuth library - is the most (the only one :)) ) popular library for JS - http://oauth.googlecode.com/svn/code/javascript/ from John Kristian. It was adviced on oauth.net The accessor.serviceProvider.actionURL is http://api.twitter.com/1/ statuses/update.json If you need -

Re: [twitter-dev] Re: Twitter client to get updates

2010-09-18 Thread John Kalucki
It sounds like you should make a REST call to fetch the mentions when you render the page. -John On Sat, Sep 18, 2010 at 12:54 AM, ram ramprasad...@gmail.com wrote: I would like to show the consumers his notifications ( tweets of people he follows ) when he logs in to our portal. Is

[twitter-dev] Twitter xAuth using Java

2010-09-18 Thread Hitesh
I was successfully managed to implement twitter xAuth permissions using Java. I have used Twitter4J package for it. Also i have posted the code snippets on a href=http://www.hiteshagrawal.com/java/ twitter-xauth-permission-using-javaTwiiter xAuth Permission in Java/ a -- Twitter developer

[twitter-dev] Re: Need inputs to implement Twitter app using xAuth

2010-09-18 Thread Hitesh
Hi All, I was successfully managed to implement twitter xAuth permissions using Java. I have used Twitter4J package for it. Also i have posted the code snippets on a href=http://www.hiteshagrawal.com/java/ twitter-xauth-permission-using-javaTwiiter xAuth Permission in Java/ a On Jul 28, 2:29 pm,

Re: [twitter-dev] Newbie so sorry if this is basic

2010-09-18 Thread Tom van der Woerdt
Twitter doesn't provide a way to check the language of a tweet. You can easily check the location of the user, but that wouldn't be accurate. The best way is to ask the Google Translate API to detect the language, but that would take time. A different way to solve it is to simply check for common

Re: [twitter-dev] Tracking twitter trends

2010-09-18 Thread Tom van der Woerdt
http://dev.twitter.com/doc/get/trends Tom On 9/18/10 6:56 PM, Praveen wrote: Hi everyone, I am an iPhone app developer and I am wanting to track twitter trends on a topic for my app. Can you please let me know if this is possible? Praveen -- Twitter developer documentation and

[twitter-dev] Re: Failed to validate oauth signature and token with xAuth

2010-09-18 Thread Nikolay Klimchuk
Second part of the base string: oauth_consumer_key=sGNxxnqgZRHUt6NunK3uwoauth_nonce=WLxsob j4rhS2xmCbaAeT4aAkRfx4vSHX4OnYpTE77hAoauth_signature_method=HMAC- SHA1oauth_timestamp=1276101652oauth_version=1.0x_auth_mode=client_authx _auth_password= %25123!aZ+()456242134x_auth_username=tpFriendlyGiant

Re: [twitter-dev] Re: Failed to validate oauth signature and token with xAuth

2010-09-18 Thread Tom van der Woerdt
Nikolay, If you look at the code, you'll see that it's already passed through the URL encode function, but it doesn't do a thing. I'd say that the issue is at that function. Tom On Sep 18, 2010, at 11:41 PM, Nikolay Klimchuk klimc...@gmail.com wrote: Second part of the base string:

[twitter-dev] Re: Failed to validate oauth signature and token with xAuth

2010-09-18 Thread Nikolay Klimchuk
You need to URLEndcode password and user name And then URLEncode entire base string one more time On Sep 18, 5:55 pm, Tom van der Woerdt i...@tvdw.eu wrote: Nikolay, If you look at the code, you'll see that it's already passed through the URL encode function, but it doesn't do a thing. I'd