AI-generated Key Takeaways
-
Blogger pages are used to display static content like contact information and author bios.
-
Pages are represented as JSON objects with properties like
title
,content
,author
, andstatus
. -
You can use the Blogger API's
pages.list
andpages.get
methods to retrieve page data. -
The API also provides methods to manage pages, including
insert
,update
,patch
, anddelete
.
Pages are where blog owners put static information, such as contact information, bio details, and the like.
For a list of methods for this resource, see the end of this page.
Resource representations
{ "kind": "blogger#page", "id": string, "status": string, "blog": { "id": string }, "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 |
string |
The ID for this resource. | |
blog |
object |
Data about the blog containing this page. | |
blog.id |
string |
The ID 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 URL to fetch this resource from. | |
title |
string |
The title of this page. This is the name displayed in the administration user interface. | |
content |
string |
The body content of this page, in HTML. | |
author |
object |
The author of this page. | |
author.id |
string |
The ID 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. | |
status |
string |
The status of the page for admin resources (either LIVE or DRAFT ). |
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.