// Obtain a reference to the 'content' div
var content = document.getElementById('content');
// Create the blogger service object
var bloggerService =
new google.gdata.blogger.BloggerService('com.appspot.interactivesampler');
// The default "metafeed" feed is used to retrieve a list of blogs for a
// particular logged-in user.
//
// The ID included in this URI can be retrieved from the
// element in the Blog's HTML source
var feedUri = 'http://www.blogger.com/feeds/17839063281282724568/blogs';
// The callback method invoked when getBlogFeed() returns feed data
var handleBlogFeed = function(blogFeedRoot) {
// Display Blogger Profile data
var author = blogFeedRoot.feed.getAuthors();
var authorName = author[0].getName().getValue();
var authorUri = author[0].getUri().getValue();
// This variable will buffer HTML output until execution is complete
var html = 'Blogger User
'
+ 'Profile Information
'
+ ''
+ '- Profile Name:
'
+ '- ' + authorName + '
'
+ '- Profile Name:
'
+ '- ' + authorUri + '
';
// Fetch blogs associated with this Blogger Profile
html += 'Blog List
';
var blogEntries = blogFeedRoot.feed.getEntries();
// Has the user created any blogs?
if(!blogEntries.length) {
html += 'First + 'target="_blank">create a blog.
';
} else {
// Print list of blogs
html += ''
+ ''
+ 'Blog Name/Link Last Updated '
+ ' '
+ '';
for (var i = 0, blogEntry; blogEntry = blogEntries[i]; i++) {
var blogTitle = blogEntry.getTitle().getText();
var blogURL = blogEntry.getHtmlLink().getHref();
var blogUpdated = blogEntry.getUpdated().getValue().getDate();
html += ''
+ ''
+ blogTitle
+ ' '
+ '' + blogUpdated + ' '
+ ' ';
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/Uf7fYM4v3SU/11497
CodersResource.com