I am planning to create an app that uses JavaScript and it needs to use OAuth to authenticate user for a website. Can anyone help me out please? Any sample code? I know about the Google Code Javascript OAuth library but I am not sure how to implement that..
|
closed as not constructive by casperOne♦ Sep 17 '12 at 17:08
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
There is a JS client implementation for OAuth here: http://oauth.googlecode.com/svn/code/javascript/ It contains example code to get you running. Basically, what you do is this:
Cheers, Matthias |
|||||||||||||||||||||
|
|
Post your question to OAuth Google group. You will get more responses there. Many people don't agree with me but I don't think OAuth is suitable for Javascript. There is no way to keep consumer secret in the browser. OAuth should be implemented in a server. |
|||||||
|
|
The mentioned security problems can be solved via YQL: http://derek.io/blog/2010/how-to-secure-oauth-in-javascript/ |
|||||
|
|
I've written a generic OAuth 2.0 javascript library. |
|||
|
|
If you're writing a Firefox (or other Mozilla) addon, consider oauthorizer. I'm using this for the latest version of goo.gl lite. However, I did hit some issues getting this approved for the Mozilla Add-Ons site, which I'm currently working through. |
|||
|
|