iPhone。 MGTwitter引擎。每 1 个请求获取多个用户的信息
请告诉我,如何正确使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了同样的问题,但我发现您需要传入一个由逗号(,)分隔的用户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)
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.