这是我得到的错误:
Warning: simplexml_load_file(http://api.twitter.com/1/statuses/user_timeline/razefm.xml?count=4): failed to open stream: HTTP request failed! HTTP/1.0 410 Gone in /home/tweets.php on line 44
Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://api.twitter.com/1/statuses/user_timeline/razefm.xml?count=4" in /home/tweets.php on line 44
我在第 44 行拥有的是:
$url = "http://api.twitter.com/1/statuses/user_timeline/{$username}.xml?count=4";
$feed = simplexml_load_file($url); <--- Line 44
我知道 Twitter 最近对其 API 进行了一些更改,但出于某种原因,我不知道我做错了什么。有什么建议么?
这是我的索引:
<?php
$username = "razefm";//your twitter username
$number = 4;//number of tweets
include ("{$dir}/php/tweets.php");
?>