如何使用Twitter API
获取我的Twitter帐户的朋友/朋友的ID?
在本教程https://github.com/bengottlieb/Twitter-OAuth-iPhone和示例中,我可以发送更新或发送任何直接消息,但我不能获取任何直接消息或朋友的ID或任何其他可以从get方法中找到的东西。
如何找到从get方法解析的任何数据? (示例:getPublicTimeline
,getUpdate:(unsigned long)updateID
,getDirectMessagesSinceID:
等。)
有人可以建议如何解决这个问题吗?
答案 0 :(得分:1)
答案 1 :(得分:0)
是的。你有getFriends
方法。还有getFollowersIncludingCurrentStatus
方法。这些方法将返回到以下回调,
- (void)userInfoReceived:(NSArray *)userInfo forRequest:(NSString *)connectionIdentifier
{
//Here You can parse userInfo and get the list
}