Search code examples
iostwitterios6twitter-oauth

Getting Twitter Timeline Fees to Show in IOS App


is their any way to show twitter feeds/timeline from my account to ios app ? I want to use twiiter framework to display tweets. I have tried rest api 1.1 but it seems not working.


Solution

  • You can use the Twitter API to get your Timeline into JSON format.

    More information about it : https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline

    Then, you can parse the response using NSDictionnary methods.

    I hope this can help you, for me is the best and simple way ;)