AI-generated Key Takeaways
-
A user resource represents a Blogger user and can be retrieved using the
blogger.users.getmethod. -
The resource representation includes details such as the user's ID, creation timestamp, profile URL, display name, and locale settings.
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. | |
selfLink
|
string
|
The API REST URL to fetch this resource from. | |
blogs
|
object
|
The container for this user's blogs. | |
blogs.
selfLink
|
string
|
The URL of the blogs for this user. | |
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.


