在 Twitter 中发布重复消息时出错(MGTwitterEngine)
我正在使用适用于 iPhone 的 MGTwitterEngine 来支持 twitter,我在第二次发布消息时收到错误(403)如何处理此问题。
也就是说..让消息是“你在做什么”我使用 [mTwitterEngine sendUpdate:"你在做什么"] 第一次发布成功,如果我想再次发布相同的消息,它会抛出 403错误。
这要怎么处理呢? 如果错误不是 403,我可以发出“重复消息”警报吗? 403 错误仅针对重复消息吗?
已添加: 是否可以检查消息是否已在 MGTwitterEngine 中发布?
I am using MGTwitterEngine for iPhone to support twitter, I am getting error(403) while posting a message second time how to handle this issue.
That is.. Let the message is "what are you doing" I am posting using [mTwitterEngine sendUpdate:"what are you doing"] for first time it is posted successfully, if i want to post the same message again it is throwing 403 error.
How to handle this?
Can i put the alert "Duplicate message" if error no 403? Is 403 error for duplicate messages only?
Added : Is it possible to check if an message is already posted in MGTwitterEngine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
403错误不仅仅是重复消息,因此您不能将错误消息扔给用户。
http://developer.twitter.com/pages/responses_errors
您必须找到重复的消息通过保留最后更新的消息在您的应用程序代码中。
The 403 error is not only for duplicate message so that you cannot throw the error message to user.
http://developer.twitter.com/pages/responses_errors
You have to find the duplicate message in your application code by keeping the last updated message.