AI-generated Key Takeaways
-
This method retrieves a list of post and post user info pairs, possibly filtered, which includes per-user information about the post.
-
Authorization is required to access this method using specific Blogger API scopes.
-
The request is an HTTP GET request that requires
blogIdanduserIdas parameters. -
The response, if successful, includes a list of Posts with User information and potentially a pagination token.
Requires authorization
Retrieves a list of post and post user info pairs, possibly filtered. The post user info contains per-user information about the post, such as access rights, specific to the user. Try it now .
Request
HTTP request
GET https://www.googleapis.com/blogger/v3/users/ userId /blogs/ blogId /posts
Parameters
blogId
string
userId
string
endDate
datetime
fetchBodies
boolean
false
.
(Default: false
)labels
string
maxResults
unsigned integer
orderBy
string
published
.Acceptable values are:
- "
published": Order by the date the post was published - "
updated": Order by the date the post was last updated
pageToken
string
startDate
datetime
status
string
Acceptable values are:
- "
draft": Draft posts - "
live": Published posts - "
scheduled": Posts that are scheduled to publish in future.
view
string
Acceptable values are:
- "
ADMIN": Admin level detail - "
AUTHOR": Author level detail - "
READER": Reader level detail
Authorization
This request requires authorization with at least one of the following scopes ( read more about authentication and authorization ).
| Scope |
|---|
https://www.googleapis.com/auth/blogger
|
https://www.googleapis.com/auth/blogger.readonly
|
Request body
Do not supply a request body with this method.
Response
If successful, this method returns a response body with the following structure:
{ "kind" : "blogger#postUserInfosList" , "nextPageToken" : string , "items" : [ postUserInfos Resource ] }
| Property name | Value | Description | Notes |
|---|---|---|---|
kind
|
string
|
The kind of this entity. Always blogger#postList
|
|
nextPageToken
|
string
|
Pagination token to fetch the next page, if one exists. | |
items[]
|
list
|
The list of Posts with User information for the post, for this Blog. |
Try it!
Use the APIs Explorer below to call this method on live data and see the response.


