blob: 7999172d69b86165a73801917d58ead47c771849 [file] [log] [blame]
Sai Cheemalapatidf613972016-10-21 13:59:49 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
Dan O'Mearadd494642020-05-01 07:42:23 -070075<h1><a href="blogger_v2.html">Blogger API v3</a> . <a href="blogger_v2.blogs.html">blogs</a></h1>
Sai Cheemalapatidf613972016-10-21 13:59:49 -070076<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#get">get(blogId, x__xgafv=None)</a></code></p>
82<p class="firstline">Gets a blog by id.</p>
83<p class="toc_element">
84 <code><a href="#list">list(userId, x__xgafv=None)</a></code></p>
85<p class="firstline">Lists blogs by user id, possibly filtered.</p>
Sai Cheemalapatidf613972016-10-21 13:59:49 -070086<h3>Method Details</h3>
87<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070088 <code class="details" id="close">close()</code>
89 <pre>Close httplib2 connections.</pre>
90</div>
91
92<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070093 <code class="details" id="get">get(blogId, x__xgafv=None)</code>
94 <pre>Gets a blog by id.
Sai Cheemalapatidf613972016-10-21 13:59:49 -070095
96Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070097 blogId: string, A parameter (required)
98 x__xgafv: string, V1 error format.
99 Allowed values
100 1 - v1 error format
101 2 - v2 error format
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700102
103Returns:
104 An object of the form:
105
106 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700107 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700108 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800109 &quot;pages&quot;: { # The container of pages in this blog.
110 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
111 &quot;totalItems&quot;: 42, # The count of pages in this blog.
112 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700113 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700114 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800115 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700116 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700117 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800118 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
119 &quot;images&quot;: [ # Display image for the Post.
120 {
121 &quot;url&quot;: &quot;A String&quot;,
122 },
123 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700124 &quot;blog&quot;: { # Data about the blog containing this Post.
125 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
126 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800127 &quot;author&quot;: { # The author of this Post.
128 &quot;image&quot;: { # The creator&#x27;s avatar.
129 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
130 },
131 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
132 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
133 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
134 },
135 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
136 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
137 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
138 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700139 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
140 &quot;A String&quot;,
141 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800142 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700143 &quot;replies&quot;: { # The container of comments on this Post.
144 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700145 &quot;items&quot;: [ # The List of Comments for this Post.
146 {
147 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700148 &quot;author&quot;: { # The author of this Comment.
149 &quot;image&quot;: { # The creator&#x27;s avatar.
150 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
151 },
152 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
153 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
154 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
155 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700156 &quot;post&quot;: { # Data about the post containing this comment.
157 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
158 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800159 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
160 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
161 },
162 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700163 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800164 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
165 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
166 &quot;blog&quot;: { # Data about the blog containing this comment.
167 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
168 },
169 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
170 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700171 },
172 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800173 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700174 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700175 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800176 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
177 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
178 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
179 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700180 &quot;location&quot;: { # The location for geotagged posts.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700181 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800182 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700183 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700184 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
185 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800186 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
187 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
Dan O'Mearadd494642020-05-01 07:42:23 -0700188 },
189 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700190 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700191 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700192 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
193 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800194 &quot;locale&quot;: { # The locale this Blog is set to.
195 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
196 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
197 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
198 },
199 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700200 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800201 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
202 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
203 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700204 }</pre>
205</div>
206
207<div class="method">
208 <code class="details" id="list">list(userId, x__xgafv=None)</code>
209 <pre>Lists blogs by user id, possibly filtered.
210
211Args:
212 userId: string, A parameter (required)
213 x__xgafv: string, V1 error format.
214 Allowed values
215 1 - v1 error format
216 2 - v2 error format
217
218Returns:
219 An object of the form:
220
221 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700222 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
Dan O'Mearadd494642020-05-01 07:42:23 -0700223 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800224 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
225 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
226 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
227 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
228 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
229 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
230 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
231 },
232 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
Bu Sun Kim65020912020-05-20 12:08:20 -0700233 &quot;blog&quot;: { # The Blog resource.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700234 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700235 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800236 &quot;pages&quot;: { # The container of pages in this blog.
237 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
238 &quot;totalItems&quot;: 42, # The count of pages in this blog.
239 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700240 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700241 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800242 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700243 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700244 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800245 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
246 &quot;images&quot;: [ # Display image for the Post.
247 {
248 &quot;url&quot;: &quot;A String&quot;,
249 },
250 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700251 &quot;blog&quot;: { # Data about the blog containing this Post.
252 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
253 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800254 &quot;author&quot;: { # The author of this Post.
255 &quot;image&quot;: { # The creator&#x27;s avatar.
256 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
257 },
258 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
259 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
260 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
261 },
262 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
263 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
264 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
265 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700266 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
267 &quot;A String&quot;,
268 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800269 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700270 &quot;replies&quot;: { # The container of comments on this Post.
271 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700272 &quot;items&quot;: [ # The List of Comments for this Post.
273 {
274 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700275 &quot;author&quot;: { # The author of this Comment.
276 &quot;image&quot;: { # The creator&#x27;s avatar.
277 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
278 },
279 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
280 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
281 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
282 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700283 &quot;post&quot;: { # Data about the post containing this comment.
284 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
285 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800286 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
287 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
288 },
289 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700290 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800291 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
292 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
293 &quot;blog&quot;: { # Data about the blog containing this comment.
294 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
295 },
296 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
297 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700298 },
299 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800300 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700301 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700302 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800303 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
304 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
305 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
306 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700307 &quot;location&quot;: { # The location for geotagged posts.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700308 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800309 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700310 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700311 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
312 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800313 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
314 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
Dan O'Mearadd494642020-05-01 07:42:23 -0700315 },
316 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700317 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700318 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700319 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
320 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800321 &quot;locale&quot;: { # The locale this Blog is set to.
322 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
323 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
324 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
325 },
326 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700327 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800328 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
329 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
330 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700331 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700332 },
333 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700334 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700335 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
336 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700337 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700338 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800339 &quot;pages&quot;: { # The container of pages in this blog.
340 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
341 &quot;totalItems&quot;: 42, # The count of pages in this blog.
342 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700343 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700344 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800345 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700346 &quot;items&quot;: [ # The List of Posts for this Blog.
347 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800348 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
349 &quot;images&quot;: [ # Display image for the Post.
350 {
351 &quot;url&quot;: &quot;A String&quot;,
352 },
353 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700354 &quot;blog&quot;: { # Data about the blog containing this Post.
355 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
356 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800357 &quot;author&quot;: { # The author of this Post.
358 &quot;image&quot;: { # The creator&#x27;s avatar.
359 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
360 },
361 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
362 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
363 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
364 },
365 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
366 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
367 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
368 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700369 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
370 &quot;A String&quot;,
371 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800372 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700373 &quot;replies&quot;: { # The container of comments on this Post.
374 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700375 &quot;items&quot;: [ # The List of Comments for this Post.
376 {
377 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700378 &quot;author&quot;: { # The author of this Comment.
379 &quot;image&quot;: { # The creator&#x27;s avatar.
380 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
381 },
382 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
383 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
384 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
385 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700386 &quot;post&quot;: { # Data about the post containing this comment.
387 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
388 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800389 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
390 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
391 },
392 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700393 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800394 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
395 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
396 &quot;blog&quot;: { # Data about the blog containing this comment.
397 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
398 },
399 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
400 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700401 },
402 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800403 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700404 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700405 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800406 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
407 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
408 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
409 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700410 &quot;location&quot;: { # The location for geotagged posts.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700411 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800412 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700413 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700414 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
415 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800416 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
417 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700418 },
419 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700420 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700421 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700422 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
423 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800424 &quot;locale&quot;: { # The locale this Blog is set to.
425 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
426 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
427 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
428 },
429 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700430 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800431 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
432 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
433 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700434 },
435 ],
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700436 }</pre>
437</div>
438
439</body></html>