Blogger JSON Feed API
Blogger JSON Feed API Maybe sometimes we need a widget for certain features, but the widgets are not available. Blogger already provides an APIs to overcome this, so we can create our own widget by reading the blog feed using the JSON and JavaScript. Here is the JSON feed API: Object Description Example json.feed.id.$t Show blog ID tag:blogger.com,1999:blog-12345 json.feed.updated.$t Last update of a blog 2013-07-08T18:21:57.051+07:00 json.feed.category[] Categories / label array of a blog json.feed.category[i].term Show the i-th category Blogger json.feed.title.$t Show blog name Next72 json.feed.subtitle.$t Show description of a blog Maxs Weblog json.feed.author[] Array of blog authors Danang Probo Sayekti, Matt Cutts json.feed.author[i].name.$t Show the i-th blog author name Danang Pobo Sayekti json.feed.author[i].uri.$t Show the i-th profile author uri https://profiles.google.com/123456789 json.feed.openSearch$totalResults.$t Show total posts 777 json.feed.entry[] Posts array of a b...