[oauth] Re: OAuth 2 in new projects

2010-06-09 Thread Shak
Thanks for that. It seems closer to 1.0a than 2. Can I ask when you started work on OAuth enabling your API? On Jun 8, 8:37 pm, Lee Hambley lee.hamb...@gmail.com wrote: sure, herehttp://tools.ietf.org/html/draft-hammer-oauth-10looks like it might be an rfc now On 8 June 2010 20:58, Shak

Re: [oauth] OAuth 2 in new projects

2010-06-09 Thread Rob Richards
Shak wrote: Hi all, I'm about to start working on incorporating OAuth in a project I'm working on. I'll be a resource server, and will therefore have to issue and manage tokens etc. My question is regarding OAuth 2. Should I look to support the new spec? I realise that it's a draft and in flux

[oauth] Problems with DevDefined.OAuth POST requests

2010-06-09 Thread Bernhard Schandl
Hi, I am implementing an OAuth consumer using the DevDefined OAuth library for C#. I need to POST data to a remote server that is not application/x-www-form-urlencoded but XML; in consequence I cannot set the payload through request.WithFormParameters(). I didn't find a way how I can explicitly

[oauth] oauth Java jar with log output

2010-06-09 Thread Carlos
Hi, surprinsingly, the oauth.jar has no logging so I wondered if there is an un official jar with logging enabled, so I can see the base string used for signature and the elements used to build it, regards, Carlos -- You received this message because you are subscribed to the Google Groups

[oauth] Re: Problems with DevDefined.OAuth POST requests

2010-06-09 Thread Tim
Hi Bernhard, What I've done is just leverage the library's ability to generate the Authorization header I required. Then I just use standard HttpWebRequests and put the header on myself. Here's a non-optimized example, you can factor out the repeatable parts into a utility. ...