Spread words to world
Let's review a topic about how to Display Dynamic Feed With Google AJAX Feed API. Have you ever seen Dynamic Feed With Google AJAX Feed API ? ...

How to Display Dynamic Feed With Google AJAX Feed API ? ...
First Step :
1. Go to Dashboard, click Design, click Add a Gadget
2. Click HTML/JavaScript
3. Place code of HTML below into HTML/JavaScript
<div id="feedControl">Loading...</div>
4. Click Save.
Second Step :
1. Go to Edit HTML
2. Find code of HTML below:
</head>
you can use (Ctrl+F) to find easily
3. Right-Before </head> place code of HTML below:
<!--AJAX-Feed-API-BEGIN-->
<script src='http://www.google.com/jsapi/?key=YOUR_KEY' type='text/javascript'/>
<script src='http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js' type='text/javascript'/>
<style type='text/css'>
@import url("http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.css");
#feedControl {
margin-top : 20px;
margin-left: auto;
margin-right: auto;
width : 400px;
font-size: 16px;
color: #9CADD0;
}
</style>
<script type='text/javascript'>
function loadFeedControl() {
var feed = [
{title:'TutorialWebForBlogger',
url:'http://tutorialwebforblogger.blogspot.com/feeds/posts/default'},
{title:'Blogger in Draft',
url:'http://bloggerindraft.blogspot.com/feeds/posts/default'},
{title:'Blogger Widgets',
url:'http://www.bloggerplugins.org/feeds/posts/default'},
{title:'Buzz Blogger',
url:'http://buzz.blogger.com/feeds/posts/default'},
{title:'Google AJAX API',
url:'http://googleajaxsearchapi.blogspot.com/feeds/posts/default'},
{title:'Google Blog',
url:'http://googleblog.blogspot.com/feeds/posts/default'},
{title:'Matt Cutts',
url:'http://www.mattcutts.com/blog/feed/atom'}];
var fg = new GFdynamicFeedControl(feed, "feedControl", {numResults : 3, displayTime : 6000, stacked : true});
}
/**
* Use google.load() to load the AJAX Feeds API
* Use google.setOnLoadCallback() to call loadFeedControl once the page loads
*/
google.load("feeds", "1");
google.setOnLoadCallback(loadFeedControl);
</script>
<!--AJAX-Feed-API-END-http://tutorialwebforblogger.blogspot.com-->
Notes :
a) YOUR_KEY
How to get YOUR KEY :
- Go to http://code.google.com/apis/ajaxfeeds/signup.html
- Click I have read and agree with the terms and conditions
- Fill My web site URL with Your site URL, example : http://tutorialwebforblogger.blogspot.com
- Click Generate API Key
- ABQIAAAAE6_J5YF8hU-lF9Bbq_This_the_example_of_YOUR_KEY_is_UzMqflYxTyFpysdPDgBfytHAEQtmCfa-VIiw
b) Width : 400px. you can change it.
c) TutorialWebForBlogger is feed title, you can change it. Ex. : Blog Tutorial.
d) Change http://tutorialwebforblogger.blogspot.com/feeds/posts/default
e) NumResults : 3 means result of the feed displayed is 3, you can change it.
4. Click Save Template and Done.
Now, you've already Displayed Dynamic Feed with Google AJAX Feed API.