iPhone。 MGTwitter引擎。每 1 个请求获取多个用户的信息

发布于 2024-10-09 01:04:46 字数 221 浏览 2 评论 0原文

请告诉我,如何正确使用 getBulkUserInformationFor: 方法?

我有“无法验证您的错误”。当我使用其他方法(例如 getUserTimelineFor:)时一切正常。

一开始我设置了消费者密钥和消费者秘密。一切都是有效的。但是当我使用密钥和秘密设置 OAuth 令牌时 - 它会抛出 SIGABRT 错误。

请告诉我,如何为每个 1 请求获取多个用户的信息?

Tell me please, how to use getBulkUserInformationFor: method correctly?

I have "Could not authenticate you error". When I use other methods (getUserTimelineFor: for example) all's ok.

At the begining I setup consumer key and consumer secret. And all is works. But when I setup OAuth token with key and secret - it's throw SIGABRT error.

Tell me please, how to get info for several users per 1 request?

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

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

发布评论

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

评论(2

静谧 2024-10-16 01:04:46

我遇到了同样的问题,但我发现您需要传入一个由逗号(,)分隔的用户ID的NSString,按照此页面:

http://dev.twitter.com/doc/get/users/lookup

即 783214,6253282

例如,您可以使用:

[self.twitterEngine getBulkUserInformationFor:@"783214, 6253282”];

(记住一次最多 100 个 ID)

I had this same problem, but I found you need to pass in a NSString of userID's separated by a comma (,) as per this page:

http://dev.twitter.com/doc/get/users/lookup

I.e. 783214,6253282

For example you would use:

[self.twitterEngine getBulkUserInformationFor:@"783214,6253282"];

(remember it's a max of 100 id's at once)

挽心 2024-10-16 01:04:46

OAHMAC_SHA1SignatureProvider 类中存在错误。我将其及其所有依赖项更新为最新版本,现在一切正常。

An error was in OAHMAC_SHA1SignatureProvider class. I updated it and all it's dependencies to the latest version and now all's ok.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文