how to display twitter feeds in iphone sdk

2019-04-02 15:13发布

how to display twitter feeds of a specific user account in iphone sdk?

2条回答
时光不老,我们不散
2楼-- · 2019-04-02 15:27

you can fetch tweets of specific user from below link:

https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=username&count=25&page=1

and use any parser like NSXMLParser to parse the above feed. Let me know if you need any more details.

查看更多
看我几分像从前
3楼-- · 2019-04-02 15:27

This is very generic question. However for starters you can do the following

  1. Authenticate your app using Oauth
  2. Check out the APIs to fetch feeds from the twitter api site.
  3. You can create custom widgets to display or use uitableview to add the data.
查看更多
登录 后发表回答