[oauth] Re: liboauth and the oauth_verifier with twitter

2010-08-05 Thread Justin Knotzke
On Jun 17, 6:26 am, Robin Gareus ro...@gareus.org wrote:

 sure it does, just add it to the request parameters..
 You can also override other oauth_parameters (but for oauth_signature)
 that way.


  Is there a way to
  get this parameter into my request that I'm missing?

 oauth_sign_url2(http://twitter...?a=boauth_verifier=CODE;...)


   Hi,

  I am stumped with the same problem. I cannot seem to get a reply
when trying to get a request token. Here is the URL I am using. I am
able to get to a request-token.

const char *access_token_uri = http://api.twitter.com/oauth/
access_token?a=boauth_verifier=5683230;

The reply comes back empty.

  I'd really appreciate some help.. Or if someone could post their
code example, I'd be very grateful.

  Thanks

  J

-- 
You received this message because you are subscribed to the Google Groups 
OAuth group.
To post to this group, send email to oa...@googlegroups.com.
To unsubscribe from this group, send email to 
oauth+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/oauth?hl=en.



[oauth] Re: liboauth and the oauth_verifier with twitter

2010-06-17 Thread Robin Gareus
On 06/17/2010 06:52 AM, Heath wrote:
 I'm trying to use liboauth to connect to twitter.  I can successfully
 retrieve my request token, but I cannot retrieve an access token
 because the liboauth functions do not accept the oauth_verifier
 parameter.  

sure it does, just add it to the request parameters..
You can also override other oauth_parameters (but for oauth_signature)
that way.

 Is twitter using non-standard oauth?  

No, it's using OAuth 1.0A.
in short: The A adds the oauth_verifier.

 Is there a way to
 get this parameter into my request that I'm missing?

oauth_sign_url2(http://twitter...?a=boauth_verifier=CODE;...)

will do the trick.

ciao,
robin

-- 
You received this message because you are subscribed to the Google Groups 
OAuth group.
To post to this group, send email to oa...@googlegroups.com.
To unsubscribe from this group, send email to 
oauth+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/oauth?hl=en.



[oauth] Re: liboauth and the oauth_verifier with twitter

2010-06-17 Thread Heath Borders
That worked great!  Thanks very much!
-Heath Borders
hbord...@mail.win.org
Twitter: heathborders
http://heath-tech.blogspot.com



On Thu, Jun 17, 2010 at 5:26 AM, Robin Gareus ro...@gareus.org wrote:
 On 06/17/2010 06:52 AM, Heath wrote:
 I'm trying to use liboauth to connect to twitter.  I can successfully
 retrieve my request token, but I cannot retrieve an access token
 because the liboauth functions do not accept the oauth_verifier
 parameter.

 sure it does, just add it to the request parameters..
 You can also override other oauth_parameters (but for oauth_signature)
 that way.

 Is twitter using non-standard oauth?

 No, it's using OAuth 1.0A.
 in short: The A adds the oauth_verifier.

 Is there a way to
 get this parameter into my request that I'm missing?

 oauth_sign_url2(http://twitter...?a=boauth_verifier=CODE;...)

 will do the trick.

 ciao,
 robin


-- 
You received this message because you are subscribed to the Google Groups 
OAuth group.
To post to this group, send email to oa...@googlegroups.com.
To unsubscribe from this group, send email to 
oauth+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/oauth?hl=en.