0
I’m having a hard time finding any material that explains how I use the Twitter API for take the most recent publications of a particular user and display them on my website.
According to the official documentation I got the following request:
GET https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name={{nome}}
Where {{nome}}
is the unique identification name of the user.
However, the result never changes:
{
- errors: [
- {
message: "Bad Authentication data",
code: 215
}
]
}
In code, I usually use the function $.getJSON()
jQuery, but I don’t think it would change the scenario.
I guess it’s not as simple as I thought it was. What steps should I follow until I reach the mentioned goal at the beginning of doubt?
First you need authenticate your app (or user) in the API.
– bfavaretto