Search code examples
objective-ctwittermgtwitterengine

Twitter API : How to get a list of users that a Twitter's user follow (MGTwitterEngine for Obj-C)


I'm wondering if I'm allowed to get a list of friends that a twitter's user follow (following list) through MGTwitterEngine for Obj-C ?

If it's possible, please direct me how to do it Thanks


Solution

  • You're allowed. MGTwitterEngine has sample code for their methods in AppController.m. This is the method for retrieving a list of who anyone is following.

    [twitterEngine getFriendIDsFor:@"username_here" startingFromCursor:-1]