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

2010-08-12 Thread Dommer
I messed around with hand-endcoding oauth urls as well and finally
gave up.

There are a plethora of APIs out there that take care of all this for
you.
Personally I am using @anywhere on the client and twitter4j on the
server.

Really seamless, and now I can focus my app (www.standard3d.com).


On Aug 12, 8:09 am, Lumpizaver demsarj...@gmail.com wrote:
 I cannot get the oAuth to work properly.

 I am trying to get a web response of a string that looks like 
 this:https://twitter.com/oauth/request_token?
 oauth_callback=http://win.plane.si/TwittRank/tweets.aspx
 oauth_consumer_key=[MY CONSUMER KEY]
 oauth_nonce=8536829
 oauth_signature_method=HMAC-SHA1
 oauth_timestamp=1281614745
 oauth_token=[MY ACCESS TOKEN]
 oauth_version=1.0
 oauth_signature=OTNQE/CGAcVemax9egTA5LFw04w=}

 I get the exception: The remote server returned an error: (401)
 Unauthorized.

 If I visit the URL above in browser i get:

 Failed to validate oauth signature and token

 Thanks for your help.

 Jure


[twitter-dev] Re: Sign in automatically

2010-08-11 Thread Dommer
Diogo,

You might want to look at @Anywhere which handles all the Oauth stuff
for you.
I just started using it (created a space sim app at http://www.standard3d.com)

Once they are logged in, your app has their userId, etc.
You can build an app which does everything twitter does, but you can
track usage (which I suppose is the point of your app?)
Yeah, so @Anywhere is cool, just remember to verify not only your
www.domain.com but also domain.com (annoying behavior if you don't)

Dommer

On Aug 10, 9:29 am, Diogo diogo.dor...@gmail.com wrote:
 Hello, I'm developing a system for a company where the employees can
 read and answer tweets from a single account. It is working, but not
 using oAuth. I read that Twitter will no longer support the basic
 authentication.
 The question is, if I change the authentication to oAuth, everybody
 will have to know the username and password of Twitter account and
 sign in manually to begin work?