0

I'm just playing around with the iPhone SDK and wanted to make a really simple Twitter app but I'm not sure how to do this. I just need to fetch the last 5 updates from a user just through their username. For instance, if I type in "mashable", I should get mashable's 5 latest updates. How would I do that?

Thanks so much ahead of time!

  • If you are using Twitter make sure to use OAuth. They will cut off the Basic Authentication soon. Here is the countdown: http://www.countdowntooauth.com/ – turtlepick Jun 22 '10 at 04:31
  • http://stackoverflow.com/questions/9194514/fetch-twitter-friend-list-after-authentification/10393978#10393978 – Faizan Refai May 02 '12 at 09:30

2 Answers2

1

Last I checked, MGTwitterEngine was the gold-standard free library to drop in for Twitter access via Objective-C.

http://mattgemmell.com/2008/02/22/mgtwitterengine-twitter-from-cocoa

Ben Zotto
  • 70,108
  • 23
  • 141
  • 204
0

Did you support twitter login yet? If yes, you just need to call the Rest API using some NSUrlConnection

vodkhang
  • 18,639
  • 11
  • 76
  • 110