iphone - 如何使用 Twitter API 获取好友/ID?

发布于 2024-12-10 23:21:49 字数 455 浏览 0 评论 0原文

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

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

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

How can I get Friends/Friend's IDs of my twitter account using Twitter API?
In this tutorial https://github.com/bengottlieb/Twitter-OAuth-iPhone and example of, I can just send the updates or send any direct messages, but I can't get any direct messages or Friend's IDs or any other things that can be found from the get methods.

How can I find any data that was parsed from the get methods? (Example: getPublicTimeline, getUpdate:(unsigned long)updateID, getDirectMessagesSinceID:, etc..)

Can anyone suggest how to solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魂ガ小子 2024-12-17 23:21:49

是的。您有 getFriends 方法。此外,您还有 getFollowersInclusionCurrentStatus 方法。这些方法将返回以下回调,

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

yes.You have getFriends method.Also You have getFollowersIncludingCurrentStatus method.These methods will return to the following Callback,

   - (void)userInfoReceived:(NSArray *)userInfo forRequest:(NSString *)connectionIdentifier
    {
//Here You can parse userInfo and get the list
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文