iphone - 如何使用Twitter API获取朋友/ ids?

时间:2011-10-19 02:57:51

标签: iphone objective-c twitter

如何使用Twitter API获取我的Twitter帐户的朋友/朋友的ID? 在本教程https://github.com/bengottlieb/Twitter-OAuth-iPhone和示例中,我可以发送更新或发送任何直接消息,但我不能获取任何直接消息或朋友的ID或任何其他可以从get方法中找到的东西。

如何找到从get方法解析的任何数据? (示例:getPublicTimelinegetUpdate:(unsigned long)updateIDgetDirectMessagesSinceID:等。)

有人可以建议如何解决这个问题吗?

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

是的。你有getFriends方法。还有getFollowersIncludingCurrentStatus方法。这些方法将返回到以下回调,

   - (void)userInfoReceived:(NSArray *)userInfo forRequest:(NSString *)connectionIdentifier
    {
//Here You can parse userInfo and get the list
    }