![]() |
xkcd is relevant, as always |
Twitter's OAuth is pretty finicky but after hitting a dozen 403 Forbidden User and 400 Bad Requests, I finally got an access token with the following code:
Successful responses come in the form of:
{"token_type":"bearer","access_token":"AAAA%2FAAA%3DAAAAAAAA"}
Which you can parse out. From there, requesting things like trending topics or executing search queries can be done like so:
The next post will have a demo link to what these will be used for!