Get Following people on twitter with OAuth method? Objective C?
I create an object:
SA_OAuthTwitterEngine *_engine = [[SA_OAuthTwitterEngine alloc] initOAuthWithDelegate:self];
then set the co开发者_如何学GonsumerKey and the consumerSecret... I can get the followers without problems by calling:
[_engine getFollowersIncludingCurrentStatus:0];
Everything fine until now: I have to get the people that the user follows and I could't find an appropiate method for it.
Does somebody out there a method to do this?
Thanks in advance...
From this page of source code it looks like the method you want might be getRecentlyUpdatedFriendsFor
.
精彩评论