Alaa
Alaa

Reputation: 4611

simplexml_load_file failed to open stream Http request failed

i am trying to parse xml from twitter feeds and it was working fine and suddenly i started to get this:

Warning: simplexml_load_file(http://search.twitter.com/search.atom?q=%23jan26): failed to open stream: HTTP request failed! HTTP/1.1 420 unused in /var/www/test.php on line 20

Upvotes: 0

Views: 2336

Answers (1)

xzyfer
xzyfer

Reputation: 14135

I suggest trying this same request with curl or even in a browser from the same IP as this script is runnign and looking at the body of the error message.

However this is generally the result of rate limiting, meaning you're reqesting too often. YOu can see similar issues here.

Upvotes: 2

Related Questions