i need to achieve that, show the last tweets of a programatically given user.
But i need to do it without login on twitter, and without using Oauth, and without registering my app on dev.twitter.com
It is possible? i can’t find the way to do it :S
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The Rest api for this is:GET https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=&count=2
more on it here. It supports authentication and without authentication, it returns public tweets.