开发者

How to get friends list of twiiter using twitter api on iphone app! [duplicate]

开发者 https://www.devze.com 2023-03-01 02:49 出处:网络
This question already has an answer here: 开发者_如何学C Closed 11 years ago. Possible Duplicate: how to get email of friends list using twitter api on iphone app.
This question already has an answer here: 开发者_如何学C Closed 11 years ago.

Possible Duplicate:

how to get email of friends list using twitter api on iphone app.

Hi all, i am try to write app to get friends list of user on twitter, when user login twitter on my app. I use twiiter api, but i can't do it. Please help me with the problem. Thanks so much!


If your Twiiter Api has this MGTwitterEngine.h file.Look for getFollowersIncludingCurrentStatus method which give the list of your followers.

Use this Delegate Method from XAuthTwitterEngineDelegate

-(void)userInfoReceived:(NSArray *)userInfo forRequest:(NSString *)connectionIdentifier
{
mFollowerArray  =   nil;
mFollowerArray  =   [userInfo retain];
}


Sounds like you need to be sending a GET statuses/friends request to the Twitter API.

For more information, you might want to read through that documentation I linked to, or re-ask your question here with more specific details about the problem you're having.

0

精彩评论

暂无评论...
验证码 换一张
取 消