Google AJAX Feed API

書籍”公開API活用ガイド”の第3章:フィードの処理方法を読んで実践。
Google AJAX Feed APIのURL:http://code.google.com/intl/ja/apis/ajaxfeeds/
にアクセスしたらPage Not Foundになってた。今はGoogle Feed APIというのかな?

ヤフーニュースのトピックタイトルを取得するページ
確認:news.html

<script type="text/javascript">
google.load("feeds", "1");

function initialize() {
	var feed = new google.feeds.Feed("http://rss.dailynews.yahoo.co.jp/fc/rss.xml");
	feed.load(function(result) {
		if (!result.error) {
			var container = document.getElementById("feed");
			for (var i = 0; i < result.feed.entries.length; i++) {
				var entry = result.feed.entries[i];
				var div = document.createElement("div");
				div.appendChild(document.createTextNode(entry.title));
				container.appendChild(div);
			}
		}
	});
}
google.setOnLoadCallback(initialize);
</script>


フォームに入力したRSSのURLからタイトルを一覧表示するページは作り中。。

参考サイト

公開API活用ガイド (I・O BOOKS)
ZAPA
工学社
売り上げランキング: 149253

関連エントリー

  1. Google Maps API
  2. Google Maps API 続き
  3. 緯度・経度から住所を取得したい (Google Maps API)
  4. twitter API (Search API Methods)
  5. 楽天ウェブサービス(RWS)を使ってアフィリエイトリンクをつくる(JavaScript/JSONP)
This entry was posted in 未分類 and tagged . Bookmark the permalink.