[oauth] should the oauth_signature paramater be the same for both RequestToken AccessToken

2009-01-31 Thread Razak
Hi Guys, Can you please let me know whether the oauth_signature be the same for both RequestToken AccessToken requests?. I have got authorized request token from the response. From this, I am trying to get AccessToken. But the request is failing some where?. Can you help me guys?. Thanks in

[oauth] Re: Problem accessing OAuthAccessToken

2009-01-31 Thread John Kristian
What service provider are you trying to use? The Google Data APIs? Check the URL. Google's access token URL is https://www.google.com/accounts/OAuthGetAccessToken , according to http://code.google.com/apis/gdata/auth.html#OAuth In the access token request, the oauth_signature must be

[oauth] Re: should the oauth_signature paramater be the same for both RequestToken AccessToken

2009-01-31 Thread John Kristian
No; each request is signed separately, with a different token secret and parameters. The same signature method may be used, but the signatures will be different because they're computed from different inputs. At least, the nonce and/or timestamp must be different. On Jan 31, 2:03 am, Razak

[oauth] Re: Problem accessing OAuthAccessToken

2009-01-31 Thread Razak
Hi John, Thank you for your reply. Iam using Google Data API only. For accessing AccessToken, should there be scope parameter in the request?. But there is no specification of scope parameter in the parameter lists for accessing AccessToken. I am trying with Javascript using Ajax. Can you