Users

  • A user resource in Blogger represents a Blogger user and contains their profile information.

  • The resource includes details like user ID, display name, profile URL, creation timestamp, locale, and blog information.

  • Users can access the 'blogger.users.get' method to retrieve user information using the user ID.

A user resource represents a Blogger user.

For a list of methods for this resource, see the end of this page.

Resource representations

{
  "kind": "blogger#user",
  "id": string,
  "created": datetime,
  "url": string,
  "selfLink": string,
  "blogs": {
    "selfLink": string
  },
  "displayName": string,
  "about": string,
  "locale": {
    "language": string,
    "country": string,
    "variant": string
  }
}
Property name Value Description Notes
kind string The kind of this entity. Always blogger#user.
id string The ID for this user.
created datetime The timestamp of when this profile was created, in seconds since epoch.
url string The user's profile page.
blogs object The container for this user's blogs.
displayName string The user's display name.
about string Profile summary information.
locale object This user's locale.
locale.language string The user's language setting.
locale.country string The user's country setting.
locale.variant string The user's language variant setting.

Methods

You can retrieve User information by using the blogger.users.get method.

get
Retrieves a user by user ID.