views:

37

answers:

1

I create an object:

 SA_OAuthTwitterEngine *_engine = [[SA_OAuthTwitterEngine alloc] initOAuthWithDelegate:self];

then set the consumerKey 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...

A: 

From this page of source code [1] it looks like the method you want might be getRecentlyUpdatedFriendsFor.

http://code.google.com/p/tweetero/source/browse/branches/v2_0_dev/MGTwitterEngine/MGTwitterEngine.h?r=102#122

abraham
YEAH! You're the man!! Thank you very much, finally I got it working!!!
crifei93