来自 Twitter API 调用的零星 400 响应
我从我网站上的 twitter api 调用中收到看似随机的 400 错误。它似乎没有速率限制,因为它似乎不是基于时间的,在测试时我根本没有经历过它,而我的设计师(没有一次又一次地点击刷新)看不到该推文完全没有,然后突然可以了。
这是电话
$file = @file_get_contents('http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=mildfuzz&count=1');
Twitter 可以在特定区域关闭吗?根据位置得到不同的结果似乎很奇怪。
I am getting seemingly random 400 errors from a twitter api call on my site. It doesn't seem to be rate limiting, as it doesn't appear to be time based, while testing I did not experience it at all, whilst my designer (who had not been hitting refresh over and over) could not see the tweet at all, then suddenly could.
this is the call
$file = @file_get_contents('http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=mildfuzz&count=1');
Can Twitter be down in specific areas? It seems odd to get different results based on location.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,最好的方法是确保我始终检查我的速率限制,不知道为什么,但这似乎提醒 Twitter 我还有一些限制。
我现在还在数据库中保存每条推文的副本。
It turned out the best way was to make sure I was always checking my rate limit, no idea why, but this seems to alert Twitter to the fact that I have some limit left.
I am also now keeping a copy of each tweet in the database.