AI-generated Key Takeaways
-
Support for the v2.0 JSON API will be discontinued on September 30th, 2024, requiring applications to be updated to the latest API version.
-
The API allows retrieval of Blogger user information, represented as a
User
resource, using theblogger.users.get
method. -
A
User
resource includes properties like user ID, creation timestamp, profile URL, display name, locale details, and blog information. -
Developers can access the latest API version and documentation through the links provided in the left-side navbar of the webpage.
Important: We will discontinue support for the v2.0 JSON API on September 30th, 2024. To ensure continued functionality, update your applications that rely on the v2.0 JSON API to the latest API version. For the latest version, use the links in the left-side navbar.
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. | |
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. |