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
To retrieve a list of pages for a blog, you can use the blogger.pages.list method. To retrieve an individual page, you can use the blogger.pages.get method.
Resource Representations
{ "kind": "blogger#page", "id": long, "blog": { "id": long }, "published": datetime, "updated": datetime, "url": string, "selfLink": string, "title": string, "content": string, "author": { "id": string, "displayName": string, "url": string, "image": { "url": string } } }
Property Name | Value | Description | Notes |
---|---|---|---|
kind |
string |
The kind of this entity. Always blogger#page . |
|
id |
long |
The identifier for this resource. | |
blog |
object |
Data about the blog containing this page. | |
blog.id |
long |
The identifier of the blog containing this page. | |
published |
datetime |
RFC 3339 date-time when this page was published. | |
updated |
datetime |
RFC 3339 date-time when this page was last updated. | |
url |
string |
The URL where this Page is displayed. | |
selfLink |
string |
The API REST URL to fetch this resource from. | |
title |
string |
The title of this page. This is the name displayed in the Admin user interface. | |
content |
string |
The body content of this page, in HTML. | |
author |
object |
The author of this page. | |
author.id |
string |
The identifier of the page creator. | |
author.displayName |
string |
The page creator's display name. | |
author.url |
string |
The URL of the page creator's Profile page. | |
author.image |
object |
The page creator's avatar. | |
author.image.url |
string |
The page creator's avatar URL. |