You are required to create a complete Android App that can show information from a blog using Blogger API. Required fields usage including header pictures and blog titles. You can use any libraries however you prefer.
Some articles will have a header picture, you are required to put the picture behide the article title. Otherwise, you can just show only the article title.
1 hour
AIzaSyBzL7-wKQl-bOHg7EyFxYrSWDrqIqGbt4Y
2112378201659339351
GET https://www.googleapis.com/blogger/v3/blogs/blogId/posts
<<Required parameters>>
key String The API Key of the Blogger API.
blogId String The ID of the blog to fetch posts from.
<<Optional parameters>>
fetchBodies Boolean Whether the body content of posts is included (Use false)
fetchImages Boolean Whether image URL metadata for each post is included. (Use true)
maxResults Integer Maximum number of posts to fetch. (Use 30)
{
"kind": "blogger#postList",
"nextPageToken": "CgkIHhjAo6mTgyoQ1-S7qYWZq6gd",
"items": [
{
"kind": "blogger#post",
"id": "2591053315335095630",
"blog": {
"id": "2112378201659339351"
},
"published": "2016-04-25T02:17:00+07:00",
"updated": "2016-04-25T03:59:10+07:00",
"etag": "\"GtyIIQmNmmUjEA0nwhSqMElCJ1g/dGltZXN0YW1wOiAxNDYxNTMxNTUwNzM4Cm9mZnNldDogMjUyMDAwMDAK\"",
"url": "http://www.akexorcist.com/2016/04/what-is-multi-window-in-android-n-and-how-to-prepare-it.html",
"selfLink": "https://www.googleapis.com/blogger/v3/blogs/2112378201659339351/posts/2591053315335095630",
"title": "[Android Code] รู้จัก Multi Window บน Android N และวิธีการรับมือ",
"images": [
{
"url": "https://4.bp.blogspot.com/-qz1Qaf9sjIk/VxxgiOErARI/AAAAAAAA6QU/CyhdRwroUvQLr3bEIldUxWV4H9i05FfegCLcB/s1200/multi_window_in_android_n-header.jpg"
}
],
"author": {
"id": "g114162000308411301557",
"displayName": "Ake Exorcist",
"url": "https://www.blogger.com/profile/15427271074457300336",
"image": {
"url": "//lh5.googleusercontent.com/-8jmtqovK1gc/AAAAAAAAAAI/AAAAAAAA5ZM/AkbiWBmGXZ0/s35-c/photo.jpg"
}
},
"replies": {
"totalItems": "0",
"selfLink": "https://www.googleapis.com/blogger/v3/blogs/2112378201659339351/posts/2591053315335095630/comments"
},
"labels": [
"Android Code"
]
},
...
],
"etag": "\"GtyIIQmNmmUjEA0nwhSqMElCJ1g/MjAxNi0wNS0yNFQxNzowMzo0NC45MDZa\""
}