How do I use twitter OAuth 2.0 in an external app?

I'm reading through the Twitter Dev docs and I don't understand where do I send the authentication request (what's the URL) and how do I encode my login/password? (or does it do so automatically?)

I understand what headers and encodings I need to provide, but I don't know what URL to send the POST requests to.

Upvotes: 0

Views: 37

Answers (1)

Sailesh Babu Doppalapudi
Sailesh Babu Doppalapudi

Reputation: 1544

You need to send the request to https://api.twitter.com/oauth2/token

You can find this information here

Upvotes: 1

Related Questions