書籍”公開API活用ガイド”の第3章:フィードの処理方法を読んで実践。
Google AJAX Feed APIのURL:http://code.google.com/intl/ja/apis/ajaxfeeds/
にアクセスしたらPage Not Foundになってた。今はGoogle Feed APIというのかな?
ヤフーニュースのトピックタイトルを取得するページ
確認:news.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <script type= "text/javascript" > google.load( "feeds" , "1" ); function initialize() { 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)
posted with amazlet at 12.01.24
ZAPA
工学社
売り上げランキング: 149253
工学社
売り上げランキング: 149253
関連エントリー