こんにちは私はTwitpicAPIを初めて使用します。TwitPicAPIを呼び出したい
http://api.twitpic.com/2/tags/show.xml?tag= "+ searchq +"&page = 1 "
AJAXを使用して実行したいのですが、現在のコードは次のとおりです。
<script type="text/javascript">
var searchq = 'first';
$(document).ready(function () {
$("#btnGetData").click(function () {
$.ajax({
type: "GET",
/* define url of xml file to parse */
url: "http://api.twitpic.com/2/tags/show.xml?tag=" + searchq + "&page=1",
/* assign it a data type */
dataType: "xml",
/* state name of function to run if file is successfully parsed */
success: parseXml
});
});
});
function parseXml(xml)
/* this is where the xml file is parsed and converted into a HTML output */
{
//for each item node in the xml file
$(xml).find("image").each(function () {
//print the following html, inserting the relevant data within the nodes of item
//this is the heading
$("#tweets").append($(this).attr("id") + "<br />");
$("#tweets").append($(this).attr("short_id") + "<br />");
$("#tweets").append($(this).attr("type") + "<br />");
$("#tweets").append($(this).attr("timestamp") + "<br />");
});
//end for each
//end function
}
</script>
そして私のHTMLは以下のようになります:
<body>
<input id="btnGetData" type="button" value="Twitter Get Tweets" />
<div id="tweets">
</div>
エラーは発生していませんが、このAPIの呼び出しは発生していません。このAPIから返されたXMLを解析したいと思います。Twitpic API XMLを解析するためのデモコードを提供していただければ、非常に役立ちます。
前もって感謝します; Abhishek A. Sharma