BlogUserInfos

  • The blogger#blogUserInfo resource represents information about a user in relation to a specific blog.

  • This resource includes nested information about the blog itself and specific user details for that blog.

  • Key user information within the nested object includes userId, blogId, photosAlbumKey, and hasAdminAccess.

  • A get method is available to retrieve a specific blog and user info pair using blogId and userId.

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.