Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to get a Twitter access token with OAuth 2.0? I came along this thread but I don't understand it. Do they support OAuth 2.0 or are they still using OAuth 1.0A?

share|improve this question

1 Answer

up vote 0 down vote accepted

Quoting from this page:

Twitter offers applications the ability to issue authenticated requests on behalf of the application itself (as opposed to on behalf of a specific user). Twitter's implementation is based on the Client Credentials Grant flow of the OAuth 2 specification. Note that OAuth 1.0a is still required to issue requests on behalf of users.

Therefore, no they do not fully support OAuth 2.

share|improve this answer
 
Note that OAuth 1.0a is still required to issue requests on behalf of users What kind of requests are they meaning? I would like to let users post to their feed through my app. Do I need to use OAuth 1.0A for this? –  Matt Jun 5 at 14:10
 
Yes in order for your app to post tweets, or perform any other action on behalf of a user, you will need to use OAuth 1.0a. –  Jonny S Jun 5 at 14:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.