1<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
75<h1><a href="blogger_v3.html">Blogger API v3</a> . <a href="blogger_v3.blogs.html">blogs</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#get">get(blogId, maxPosts=None, view=None, 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="#getByUrl">getByUrl(url, view=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Gets a blog by url.</p>
86<p class="toc_element">
87  <code><a href="#listByUser">listByUser(userId, fetchUserInfo=None, role=None, status=None, view=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Lists blogs by user.</p>
89<h3>Method Details</h3>
90<div class="method">
91    <code class="details" id="close">close()</code>
92  <pre>Close httplib2 connections.</pre>
93</div>
94
95<div class="method">
96    <code class="details" id="get">get(blogId, maxPosts=None, view=None, x__xgafv=None)</code>
97  <pre>Gets a blog by id.
98
99Args:
100  blogId: string, A parameter (required)
101  maxPosts: integer, A parameter
102  view: string, A parameter
103    Allowed values
104      VIEW_TYPE_UNSPECIFIED -
105      READER -
106      AUTHOR -
107      ADMIN -
108  x__xgafv: string, V1 error format.
109    Allowed values
110      1 - v1 error format
111      2 - v2 error format
112
113Returns:
114  An object of the form:
115
116    {
117  &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
118  &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
119  &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
120  &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
121  &quot;locale&quot;: { # The locale this Blog is set to.
122    &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
123    &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
124    &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
125  },
126  &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
127  &quot;pages&quot;: { # The container of pages in this blog.
128    &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
129    &quot;totalItems&quot;: 42, # The count of pages in this blog.
130  },
131  &quot;posts&quot;: { # The container of posts in this blog.
132    &quot;items&quot;: [ # The List of Posts for this Blog.
133      {
134        &quot;author&quot;: { # The author of this Post.
135          &quot;displayName&quot;: &quot;A String&quot;, # The display name.
136          &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
137          &quot;image&quot;: { # The creator&#x27;s avatar.
138            &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
139          },
140          &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
141        },
142        &quot;blog&quot;: { # Data about the blog containing this Post.
143          &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
144        },
145        &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
146        &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
147        &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
148        &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
149        &quot;images&quot;: [ # Display image for the Post.
150          {
151            &quot;url&quot;: &quot;A String&quot;,
152          },
153        ],
154        &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
155        &quot;labels&quot;: [ # The list of labels this Post was tagged with.
156          &quot;A String&quot;,
157        ],
158        &quot;location&quot;: { # The location for geotagged posts.
159          &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
160          &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
161          &quot;name&quot;: &quot;A String&quot;, # Location name.
162          &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
163        },
164        &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
165        &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
166        &quot;replies&quot;: { # The container of comments on this Post.
167          &quot;items&quot;: [ # The List of Comments for this Post.
168            {
169              &quot;author&quot;: { # The author of this Comment.
170                &quot;displayName&quot;: &quot;A String&quot;, # The display name.
171                &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
172                &quot;image&quot;: { # The creator&#x27;s avatar.
173                  &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
174                },
175                &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
176              },
177              &quot;blog&quot;: { # Data about the blog containing this comment.
178                &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
179              },
180              &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
181              &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
182              &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
183                &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
184              },
185              &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
186              &quot;post&quot;: { # Data about the post containing this comment.
187                &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
188              },
189              &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
190              &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
191              &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
192              &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
193            },
194          ],
195          &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
196          &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
197        },
198        &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
199        &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
200        &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
201        &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
202        &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
203        &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
204      },
205    ],
206    &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
207    &quot;totalItems&quot;: 42, # The count of posts in this blog.
208  },
209  &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
210  &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
211  &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
212  &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
213  &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
214}</pre>
215</div>
216
217<div class="method">
218    <code class="details" id="getByUrl">getByUrl(url, view=None, x__xgafv=None)</code>
219  <pre>Gets a blog by url.
220
221Args:
222  url: string, A parameter (required)
223  view: string, A parameter
224    Allowed values
225      VIEW_TYPE_UNSPECIFIED -
226      READER -
227      AUTHOR -
228      ADMIN -
229  x__xgafv: string, V1 error format.
230    Allowed values
231      1 - v1 error format
232      2 - v2 error format
233
234Returns:
235  An object of the form:
236
237    {
238  &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
239  &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
240  &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
241  &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
242  &quot;locale&quot;: { # The locale this Blog is set to.
243    &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
244    &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
245    &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
246  },
247  &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
248  &quot;pages&quot;: { # The container of pages in this blog.
249    &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
250    &quot;totalItems&quot;: 42, # The count of pages in this blog.
251  },
252  &quot;posts&quot;: { # The container of posts in this blog.
253    &quot;items&quot;: [ # The List of Posts for this Blog.
254      {
255        &quot;author&quot;: { # The author of this Post.
256          &quot;displayName&quot;: &quot;A String&quot;, # The display name.
257          &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
258          &quot;image&quot;: { # The creator&#x27;s avatar.
259            &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
260          },
261          &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
262        },
263        &quot;blog&quot;: { # Data about the blog containing this Post.
264          &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
265        },
266        &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
267        &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
268        &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
269        &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
270        &quot;images&quot;: [ # Display image for the Post.
271          {
272            &quot;url&quot;: &quot;A String&quot;,
273          },
274        ],
275        &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
276        &quot;labels&quot;: [ # The list of labels this Post was tagged with.
277          &quot;A String&quot;,
278        ],
279        &quot;location&quot;: { # The location for geotagged posts.
280          &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
281          &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
282          &quot;name&quot;: &quot;A String&quot;, # Location name.
283          &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
284        },
285        &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
286        &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
287        &quot;replies&quot;: { # The container of comments on this Post.
288          &quot;items&quot;: [ # The List of Comments for this Post.
289            {
290              &quot;author&quot;: { # The author of this Comment.
291                &quot;displayName&quot;: &quot;A String&quot;, # The display name.
292                &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
293                &quot;image&quot;: { # The creator&#x27;s avatar.
294                  &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
295                },
296                &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
297              },
298              &quot;blog&quot;: { # Data about the blog containing this comment.
299                &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
300              },
301              &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
302              &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
303              &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
304                &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
305              },
306              &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
307              &quot;post&quot;: { # Data about the post containing this comment.
308                &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
309              },
310              &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
311              &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
312              &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
313              &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
314            },
315          ],
316          &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
317          &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
318        },
319        &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
320        &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
321        &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
322        &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
323        &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
324        &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
325      },
326    ],
327    &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
328    &quot;totalItems&quot;: 42, # The count of posts in this blog.
329  },
330  &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
331  &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
332  &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
333  &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
334  &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
335}</pre>
336</div>
337
338<div class="method">
339    <code class="details" id="listByUser">listByUser(userId, fetchUserInfo=None, role=None, status=None, view=None, x__xgafv=None)</code>
340  <pre>Lists blogs by user.
341
342Args:
343  userId: string, A parameter (required)
344  fetchUserInfo: boolean, A parameter
345  role: string, A parameter (repeated)
346    Allowed values
347      VIEW_TYPE_UNSPECIFIED -
348      READER -
349      AUTHOR -
350      ADMIN -
351  status: string, Default value of status is LIVE. (repeated)
352    Allowed values
353      LIVE -
354      DELETED -
355  view: string, A parameter
356    Allowed values
357      VIEW_TYPE_UNSPECIFIED -
358      READER -
359      AUTHOR -
360      ADMIN -
361  x__xgafv: string, V1 error format.
362    Allowed values
363      1 - v1 error format
364      2 - v2 error format
365
366Returns:
367  An object of the form:
368
369    {
370  &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
371    {
372      &quot;blog&quot;: { # The Blog resource.
373        &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
374        &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
375        &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
376        &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
377        &quot;locale&quot;: { # The locale this Blog is set to.
378          &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
379          &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
380          &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
381        },
382        &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
383        &quot;pages&quot;: { # The container of pages in this blog.
384          &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
385          &quot;totalItems&quot;: 42, # The count of pages in this blog.
386        },
387        &quot;posts&quot;: { # The container of posts in this blog.
388          &quot;items&quot;: [ # The List of Posts for this Blog.
389            {
390              &quot;author&quot;: { # The author of this Post.
391                &quot;displayName&quot;: &quot;A String&quot;, # The display name.
392                &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
393                &quot;image&quot;: { # The creator&#x27;s avatar.
394                  &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
395                },
396                &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
397              },
398              &quot;blog&quot;: { # Data about the blog containing this Post.
399                &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
400              },
401              &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
402              &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
403              &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
404              &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
405              &quot;images&quot;: [ # Display image for the Post.
406                {
407                  &quot;url&quot;: &quot;A String&quot;,
408                },
409              ],
410              &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
411              &quot;labels&quot;: [ # The list of labels this Post was tagged with.
412                &quot;A String&quot;,
413              ],
414              &quot;location&quot;: { # The location for geotagged posts.
415                &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
416                &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
417                &quot;name&quot;: &quot;A String&quot;, # Location name.
418                &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
419              },
420              &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
421              &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
422              &quot;replies&quot;: { # The container of comments on this Post.
423                &quot;items&quot;: [ # The List of Comments for this Post.
424                  {
425                    &quot;author&quot;: { # The author of this Comment.
426                      &quot;displayName&quot;: &quot;A String&quot;, # The display name.
427                      &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
428                      &quot;image&quot;: { # The creator&#x27;s avatar.
429                        &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
430                      },
431                      &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
432                    },
433                    &quot;blog&quot;: { # Data about the blog containing this comment.
434                      &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
435                    },
436                    &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
437                    &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
438                    &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
439                      &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
440                    },
441                    &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
442                    &quot;post&quot;: { # Data about the post containing this comment.
443                      &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
444                    },
445                    &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
446                    &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
447                    &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
448                    &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
449                  },
450                ],
451                &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
452                &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
453              },
454              &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
455              &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
456              &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
457              &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
458              &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
459              &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
460            },
461          ],
462          &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
463          &quot;totalItems&quot;: 42, # The count of posts in this blog.
464        },
465        &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
466        &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
467        &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
468        &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
469        &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
470      },
471      &quot;blog_user_info&quot;: { # Information about a User for the Blog.
472        &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
473        &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
474        &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
475        &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
476        &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
477        &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
478      },
479      &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
480    },
481  ],
482  &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
483    {
484      &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
485      &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
486      &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
487      &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
488      &quot;locale&quot;: { # The locale this Blog is set to.
489        &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
490        &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
491        &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
492      },
493      &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
494      &quot;pages&quot;: { # The container of pages in this blog.
495        &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
496        &quot;totalItems&quot;: 42, # The count of pages in this blog.
497      },
498      &quot;posts&quot;: { # The container of posts in this blog.
499        &quot;items&quot;: [ # The List of Posts for this Blog.
500          {
501            &quot;author&quot;: { # The author of this Post.
502              &quot;displayName&quot;: &quot;A String&quot;, # The display name.
503              &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
504              &quot;image&quot;: { # The creator&#x27;s avatar.
505                &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
506              },
507              &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
508            },
509            &quot;blog&quot;: { # Data about the blog containing this Post.
510              &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
511            },
512            &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
513            &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
514            &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
515            &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
516            &quot;images&quot;: [ # Display image for the Post.
517              {
518                &quot;url&quot;: &quot;A String&quot;,
519              },
520            ],
521            &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
522            &quot;labels&quot;: [ # The list of labels this Post was tagged with.
523              &quot;A String&quot;,
524            ],
525            &quot;location&quot;: { # The location for geotagged posts.
526              &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
527              &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
528              &quot;name&quot;: &quot;A String&quot;, # Location name.
529              &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
530            },
531            &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
532            &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
533            &quot;replies&quot;: { # The container of comments on this Post.
534              &quot;items&quot;: [ # The List of Comments for this Post.
535                {
536                  &quot;author&quot;: { # The author of this Comment.
537                    &quot;displayName&quot;: &quot;A String&quot;, # The display name.
538                    &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
539                    &quot;image&quot;: { # The creator&#x27;s avatar.
540                      &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
541                    },
542                    &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
543                  },
544                  &quot;blog&quot;: { # Data about the blog containing this comment.
545                    &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
546                  },
547                  &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
548                  &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
549                  &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
550                    &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
551                  },
552                  &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
553                  &quot;post&quot;: { # Data about the post containing this comment.
554                    &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
555                  },
556                  &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
557                  &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
558                  &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
559                  &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
560                },
561              ],
562              &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
563              &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
564            },
565            &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
566            &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
567            &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
568            &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
569            &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
570            &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
571          },
572        ],
573        &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
574        &quot;totalItems&quot;: 42, # The count of posts in this blog.
575      },
576      &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
577      &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
578      &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
579      &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
580      &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
581    },
582  ],
583  &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
584}</pre>
585</div>
586
587</body></html>