Is there any way to get oauth_token and oauth_token_secret after signin with twitter anywhere javascript API?
In Facebook javascript API, I can do FB.getAuthResponse()['accessToken'] to get the access_token.
I am looking for similar way to get it using twitter javascript api
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Twitter does not use OAuth 2. You will need to implement an OAuth 1 client, fortunately there are many available. In the JavaScript world I prefer this one: https://github.com/bytespider/jsOAuth. |
|||
|
|