• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:Google AJAX Feed APIについて)

Google AJAX Feed APIについて

このQ&Aのポイント
  • ブログのRSSを使って自動的にホームページに新着ブログ記事の日付とタイトルを表示する方法について説明します。
  • Google AJAX Feed APIを使用して、ホームページに新着ブログ記事の日付とタイトルを表示する方法を詳しく説明します。
  • Google AJAX Feed APIを使って、ホームページに新着ブログ記事の日付とタイトルを自動的に表示する方法について解説します。

質問者が選んだベストアンサー

  • ベストアンサー
noname#87714
noname#87714
回答No.1

スクリプトタグの上あたりに以下を記述。 <style type="text/css"> #feed { font-size:10px; } #feed li { height: 2em; } </style> このぐらいなら FeedControl を使うほうがラクですけど。 <script type="text/javascript" src="http://www.google.com/jsapi?key=********"></script> <script type="text/javascript"> google.load("feeds", "1"); function initialize(){ var feedControl = new google.feeds.FeedControl(); feedControl.addFeed("URL", ""); feedControl.draw(document.getElementById("feed")); } google.setOnLoadCallback(initialize); </script> 無駄な部分は CSS で消せますし。