AI-generated Key Takeaways
-
This resource provides information about a user's role and permissions within a specific blog.
-
The resource representation includes details like user ID, blog ID, photo album key, and admin access status.
-
It uses a nested structure with
blog
andblog_user_info
objects to organize information. -
Developers can utilize the
get
method to retrieve information about a specific blog and user pair.
For a list of methods for this resource, see the end of this page.
Resource representations
{ "kind": "blogger#blogUserInfo", "blog": blogs Resource, "blog_user_info": { "kind": "blogger#blogPerUserInfo", "userId": string, "blogId": string, "photosAlbumKey": string, "hasAdminAccess": boolean } }
Property name | Value | Description | Notes |
---|---|---|---|
kind |
string |
The kind of this entity. Always blogger#blogUserInfo |
|
blog |
nested object |
The Blog resource. | |
blog_user_info |
nested object |
Information about a User for the Blog. | |
blog_user_info.kind |
string |
The kind of this entity. Always blogger#blogPerUserInfo |
|
blog_user_info.userId |
string |
ID of the User | |
blog_user_info.blogId |
string |
ID of the Blog resource | |
blog_user_info.photosAlbumKey |
string |
The Photo Album Key for the user when adding photos to the blog | |
blog_user_info.hasAdminAccess |
boolean |
True if the user has Admin level access to the blog. |
Methods
- get
- Gets one blog and user info pair by blogId and userId.