My client wants twitter integration in my iPhone app in this way that User can read tweets for a particular user without login into the app.
Share
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.
Most of twitter API requests require authentications.
But some public data available without login.
For example you can receive user timeline (one seen when you view a user’s profile on twitter.com) as json string with request:
https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=twitterapi&count=2
find more at https://dev.twitter.com/docs/api#timelines