I would look through this code that implements OAuth in Java. It has a twitter example and you can follow what parameters are sent to Twitter. http://code.google.com/p/oauth-signpost/ <http://code.google.com/p/oauth-signpost/>
On Thu, May 14, 2009 at 11:05 AM, mc <[email protected]> wrote: > > Hi, > > I'm new to OAuth. How did you get the requestToken? I assume you > used the request url, http://twitter.com/oauth/request_token, to get > the request token. But, what parameters do I use with the request > url? > > On Apr 19, 5:53 pm, Manish Pandit <[email protected]> wrote: > > On Apr 18, 6:56 pm, "[email protected]" > > > > > > > > <[email protected]> wrote: > > > Hi, > > > > > I'm a noobie to OAuth so I tried OAuthHelper out. > > > I started with > > > OAuthHelper a = new OAuthHelper("cmdline.properties"); > > > a.execute("request"); > > > a.execute("authorize"); > > > > > I copied the URL to the browser and authorized my Application. > > > > > After that I tried > > > OAuthHelper a = new OAuthHelper("cmdline.properties"); > > > a.execute("access"); > > > I keep seeing > > > Exception in thread "main" net.oauth.OAuthProblemException: HTTP/1.1 > > > 401 Unauthorized > > > > > In the cmdline.properties I have the following properties: > > > > > requestToken=xxx > > > authorizationUrl=http\://twitter.com/oauth/authorize > > > consumerSecret=xxx > > > accessUrl=http://twitter.com/oauth/access_token > > > user_id=xxx > > > tokenSecret=xxx > > > requestUrl=http\://twitter.com/oauth/request_token > > > consumerKey=xxx > > > > > (Yes, I'm going to use it to my Twitter Client.) > > > > > I have no idea what could I miss. I appreciate any help. > > > > > Thanks, > > > > > Martina > > > > Can you paste the raw HTTP request (including the headers)? > > > > -cheers, > > Manish > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "OAuth" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/oauth?hl=en -~----------~----~----~----~------~----~------~--~---
