0

我正在尝试创建一个简单的脚本,它将检索 twitter 用户的最后 5 个提要(在本例中为 BBC)

它在我的开发服务器上本地运行良好,但是一旦我将其上传到实时站点,我会收到以下错误:

Warning: file_get_contents(https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name=bbc&count=5): failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request in ....

有谁知道为什么这在我的实时服务器上不起作用(但在我的开发服务器上很好?)

4

1 回答 1

1

file_get_contents throws 400 Bad Request error PHP中所述,由于改进了错误处理,您可能会更好地使用 curl 而不是 file_get_contents - 这可能会为您提供另一个线索。

于 2013-05-14T13:01:53.427 回答