Users

A User represents a Blogger user.

Methods

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

get
Retrieves one user by userId.

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 identifier 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.