Я использую API для поиска в Твиттере, а именно:
$search = "http://search.twitter.com/search.atom?q=" . $q . "";
$tw = curl_init();
curl_setopt($tw, CURLOPT_URL, $search);
curl_setopt($tw, CURLOPT_RETURNTRANSFER, TRUE);
$twi = curl_exec($tw);
$ tw выглядит как настоящий файл .xml.Я вывожу его в файл, и он выглядит так:
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:google="http://base.google.com/ns/1.0" xml:lang="en-US" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns="http://www.w3.org/2005/Atom" xmlns:twitter="http://api.twitter.com/">
<id>tag:search.twitter.com,2005:search/"japan"</id>
<link type="text/html" href="http://search.twitter.com/search?q=%22japan%22" rel="alternate"/>
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=%22japan%22" rel="self"/>
<title>"japan" - Twitter Search</title>
<link type="application/opensearchdescription+xml" href="http://search.twitter.com/opensearch.xml" rel="search"/>
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=%22japan%22&since_id=53215162768965632" rel="refresh"/>
<twitter:warning>since_id removed for pagination.</twitter:warning>
<updated>2011-03-30T22:00:58Z</updated>
<openSearch:itemsPerPage>15</openSearch:itemsPerPage>
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?max_id=53215162768965632&page=2&q=%22japan%22" rel="next"/>
<entry>
<id>tag:search.twitter.com,2005:53215162768965632</id>
<published>2011-03-30T22:00:58Z</published>
<link type="text/html" href="http://twitter.com/kobe_nowplaying/statuses/53215162768965632" rel="alternate"/>
<title>#NowPlaying "Deora Ar Mo Chroi" by Enya on album "A Day Without Rain (Japan)"</title>
<content type="html"><a href="http://search.twitter.com/search?q=%23NowPlaying" onclick="pageTracker._setCustomVar(2, 'result_type', 'recent', 3);pageTracker._trackPageview('/intra/hashtag/#NowPlaying');">#NowPlaying</a> &quot;Deora Ar Mo Chroi&quot; by Enya on album &quot;A Day Without Rain (<b>Japan</b>)&quot;</content>
<updated>2011-03-30T22:00:58Z</updated>
<link type="image/png" href="http://a1.twimg.com/sticky/default_profile_images/default_profile_0_normal.png" rel="image"/>
<twitter:geo>
</twitter:geo>
<twitter:metadata>
<twitter:result_type>recent</twitter:result_type>
</twitter:metadata>
<twitter:source><a href="http://www.h-fj.com/blog/" rel="nofollow">TWTunes</a></twitter:source>
<twitter:lang>en</twitter:lang>
<author>
<name>kobe_nowplaying (kobe_nowplaying)</name>
<uri>http://twitter.com/kobe_nowplaying</uri>
</author>
</entry>
Когда я пытаюсь использовать AJAX и возвращаю responseXML и искать теги, используя getElementsByTagName ("entry"), он возвращает "Uncaught TypeError:Не удается прочитать свойство 'documentElement' со значением NULL "
Код HTML:
<button onclick="getTweet('tweetOut.xml')">Get Tweets!</button>
Код JS:
...
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
x=xmlhttp.responseXML.documentElement.getElementsByTagName("entry");
}
...
Программа всегда зависает на этой строке JS.Есть идеи?я попытался использовать намного более простой XML-файл, и мой код, кажется, в порядке.Есть что-то другое с выводом curl_exec?
Спасибо.