Blogs
Learn about blogs and the various endpoints to list and search for them.
We'll cover the following...
A blog represents the base entity of the Blogger API. It's a website where the content is shared with a target audience. A blog contains pages and posts containing the information to be shared.
Blog properties
The table below shows the list of properties that comprise the blog class.
Parameter | Type | Description |
| string | The type of object. Value: Note: This value is fixed. |
| string | The ID of the blog. |
| string | The name/title of the blog. Note: This value can include HTML. |
| string | The description of the blog. Note: This value can include HTML. |
| datetime | The blog's date of publishing. Format: yyyy-mm-dd |
| datetime | The date of the blog's last update. Format: yyyy-mm-dd |
| string | The published link of the blog. |
| string | The Blogger API URL of the blog. |
| object | The object that contains blog posts. |
| integer | The number of blog posts. |
| string | The Blogger API URL of the blog posts collection. |
| object | The object that contains blog pages. |
| integer | The number of blog pages. |
| string | The Blogger API URL of the blog pages collection. |
| object | The object containing the locale information of the blog. |
| string | The language of the blog. |
| string | The country corresponding to the language. |
| string | The language variant of the blog. |
| string | The metadata of the blog. |
| list | The list of blog posts. |
Methods
Let's look at some methods we can invoke for the blog class.
Get blogs by user ID
We can retrieve a list of all the blogs of a specific user by making a GET request to the following endpoint:
https://blogger.googleapis.com/v3/users/{userId}/blogs
This endpoint ...