What would be the best way to pull the latest 5 public tweets from a user? At the moment Iâm using
jQuery.getJSON("https://api.twitter.com/1/statuses/user_timeline.json?user_id=XXXXXX&count=5&callback=?");
where itâs only a single specific user whose tweets are being pulled onto a single website.
It seems bizarre that youâd block access to public tweets in this way. As I understand it, now instead of using the above simple code, I must create an application on your platform, then create application logic on my server to use oAuth, then pass that to my front-end.
Is the above correct, or am I missing something simple I should be doing?