blob: 344321621b8bc2ed264662328ed358100d60b8e3 [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<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_v3.html">Blogger API v3</a> . <a href="blogger_v3.blogs.html">blogs</a></h1>
John Asmuth614db982014-04-24 15:46:26 -040076<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">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080081 <code><a href="#get">get(blogId, view=None, maxPosts=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070082<p class="firstline">Gets a blog by id.</p>
John Asmuth614db982014-04-24 15:46:26 -040083<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070084 <code><a href="#getByUrl">getByUrl(url, view=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070085<p class="firstline">Gets a blog by url.</p>
John Asmuth614db982014-04-24 15:46:26 -040086<p class="toc_element">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080087 <code><a href="#listByUser">listByUser(userId, fetchUserInfo=None, status=None, view=None, role=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070088<p class="firstline">Lists blogs by user.</p>
John Asmuth614db982014-04-24 15:46:26 -040089<h3>Method Details</h3>
90<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070091 <code class="details" id="close">close()</code>
92 <pre>Close httplib2 connections.</pre>
93</div>
94
95<div class="method">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080096 <code class="details" id="get">get(blogId, view=None, maxPosts=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -070097 <pre>Gets a blog by id.
John Asmuth614db982014-04-24 15:46:26 -040098
99Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700100 blogId: string, A parameter (required)
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700101 view: string, A parameter
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700102 Allowed values
103 VIEW_TYPE_UNSPECIFIED -
104 READER -
105 AUTHOR -
106 ADMIN -
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800107 maxPosts: integer, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700108 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -0400109 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 1 - v1 error format
111 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400112
113Returns:
114 An object of the form:
115
116 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800117 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700118 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800119 &quot;totalItems&quot;: 42, # The count of posts in this blog.
120 &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 -0700121 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400122 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800123 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700124 &quot;images&quot;: [ # Display image for the Post.
125 {
126 &quot;url&quot;: &quot;A String&quot;,
127 },
128 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800129 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
130 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
131 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
132 &quot;replies&quot;: { # The container of comments on this Post.
133 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
134 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
135 &quot;items&quot;: [ # The List of Comments for this Post.
136 {
137 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
138 &quot;post&quot;: { # Data about the post containing this comment.
139 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
140 },
141 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
142 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
143 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
144 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
145 },
146 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
147 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
148 &quot;author&quot;: { # The author of this Comment.
149 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
150 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
151 &quot;image&quot;: { # The creator&#x27;s avatar.
152 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
153 },
154 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
155 },
156 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
157 &quot;blog&quot;: { # Data about the blog containing this comment.
158 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
159 },
160 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
161 },
162 ],
163 },
164 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
165 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
166 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
167 &quot;A String&quot;,
168 ],
169 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
170 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800171 &quot;blog&quot;: { # Data about the blog containing this Post.
172 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
173 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800174 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
175 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
176 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
177 &quot;location&quot;: { # The location for geotagged posts.
178 &quot;name&quot;: &quot;A String&quot;, # Location name.
179 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
180 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
181 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
182 },
183 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800184 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800185 &quot;author&quot;: { # The author of this Post.
186 &quot;image&quot;: { # The creator&#x27;s avatar.
187 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
188 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800189 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
190 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800191 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800192 },
John Asmuth614db982014-04-24 15:46:26 -0400193 },
194 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800195 },
196 &quot;pages&quot;: { # The container of pages in this blog.
197 &quot;totalItems&quot;: 42, # The count of pages in this blog.
198 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400199 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700200 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800201 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
202 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
203 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700204 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800205 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
206 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
207 &quot;locale&quot;: { # The locale this Blog is set to.
208 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
209 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
210 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
211 },
212 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
213 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
John Asmuth614db982014-04-24 15:46:26 -0400214 }</pre>
215</div>
216
217<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700218 <code class="details" id="getByUrl">getByUrl(url, view=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700219 <pre>Gets a blog by url.
John Asmuth614db982014-04-24 15:46:26 -0400220
221Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700222 url: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700223 view: string, A parameter
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700224 Allowed values
225 VIEW_TYPE_UNSPECIFIED -
226 READER -
227 AUTHOR -
228 ADMIN -
Dan O'Mearadd494642020-05-01 07:42:23 -0700229 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -0400230 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700231 1 - v1 error format
232 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400233
234Returns:
235 An object of the form:
236
237 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800238 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700239 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800240 &quot;totalItems&quot;: 42, # The count of posts in this blog.
241 &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 -0700242 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400243 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800244 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700245 &quot;images&quot;: [ # Display image for the Post.
246 {
247 &quot;url&quot;: &quot;A String&quot;,
248 },
249 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800250 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
251 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
252 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
253 &quot;replies&quot;: { # The container of comments on this Post.
254 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
255 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
256 &quot;items&quot;: [ # The List of Comments for this Post.
257 {
258 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
259 &quot;post&quot;: { # Data about the post containing this comment.
260 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
261 },
262 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
263 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
264 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
265 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
266 },
267 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
268 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
269 &quot;author&quot;: { # The author of this Comment.
270 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
271 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
272 &quot;image&quot;: { # The creator&#x27;s avatar.
273 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
274 },
275 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
276 },
277 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
278 &quot;blog&quot;: { # Data about the blog containing this comment.
279 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
280 },
281 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
282 },
283 ],
284 },
285 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
286 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
287 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
288 &quot;A String&quot;,
289 ],
290 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
291 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800292 &quot;blog&quot;: { # Data about the blog containing this Post.
293 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
294 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800295 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
296 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
297 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
298 &quot;location&quot;: { # The location for geotagged posts.
299 &quot;name&quot;: &quot;A String&quot;, # Location name.
300 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
301 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
302 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
303 },
304 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800305 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800306 &quot;author&quot;: { # The author of this Post.
307 &quot;image&quot;: { # The creator&#x27;s avatar.
308 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
309 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800310 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
311 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800312 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800313 },
John Asmuth614db982014-04-24 15:46:26 -0400314 },
315 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800316 },
317 &quot;pages&quot;: { # The container of pages in this blog.
318 &quot;totalItems&quot;: 42, # The count of pages in this blog.
319 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400320 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700321 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800322 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
323 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
324 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700325 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800326 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
327 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
328 &quot;locale&quot;: { # The locale this Blog is set to.
329 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
330 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
331 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
332 },
333 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
334 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
John Asmuth614db982014-04-24 15:46:26 -0400335 }</pre>
336</div>
337
338<div class="method">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800339 <code class="details" id="listByUser">listByUser(userId, fetchUserInfo=None, status=None, view=None, role=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700340 <pre>Lists blogs by user.
John Asmuth614db982014-04-24 15:46:26 -0400341
342Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700343 userId: string, A parameter (required)
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800344 fetchUserInfo: boolean, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700345 status: string, Default value of status is LIVE. (repeated)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700346 Allowed values
347 LIVE -
348 DELETED -
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700349 view: string, A parameter
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700350 Allowed values
351 VIEW_TYPE_UNSPECIFIED -
352 READER -
353 AUTHOR -
354 ADMIN -
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700355 role: string, A parameter (repeated)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700356 Allowed values
357 VIEW_TYPE_UNSPECIFIED -
358 READER -
359 AUTHOR -
360 ADMIN -
Dan O'Mearadd494642020-05-01 07:42:23 -0700361 x__xgafv: string, V1 error format.
Craig Citro065b5302014-08-14 00:47:23 -0700362 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700363 1 - v1 error format
364 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400365
366Returns:
367 An object of the form:
368
369 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700370 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
371 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700372 &quot;blog&quot;: { # The Blog resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800373 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700374 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800375 &quot;totalItems&quot;: 42, # The count of posts in this blog.
376 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700377 &quot;items&quot;: [ # The List of Posts for this Blog.
378 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800379 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700380 &quot;images&quot;: [ # Display image for the Post.
381 {
382 &quot;url&quot;: &quot;A String&quot;,
383 },
384 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800385 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
386 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
387 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
388 &quot;replies&quot;: { # The container of comments on this Post.
389 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
390 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
391 &quot;items&quot;: [ # The List of Comments for this Post.
392 {
393 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
394 &quot;post&quot;: { # Data about the post containing this comment.
395 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
396 },
397 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
398 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
399 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
400 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
401 },
402 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
403 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
404 &quot;author&quot;: { # The author of this Comment.
405 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
406 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
407 &quot;image&quot;: { # The creator&#x27;s avatar.
408 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
409 },
410 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
411 },
412 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
413 &quot;blog&quot;: { # Data about the blog containing this comment.
414 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
415 },
416 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
417 },
418 ],
419 },
420 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
421 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
422 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
423 &quot;A String&quot;,
424 ],
425 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
426 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800427 &quot;blog&quot;: { # Data about the blog containing this Post.
428 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
429 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800430 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
431 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
432 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
433 &quot;location&quot;: { # The location for geotagged posts.
434 &quot;name&quot;: &quot;A String&quot;, # Location name.
435 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
436 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
437 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
438 },
439 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800440 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800441 &quot;author&quot;: { # The author of this Post.
442 &quot;image&quot;: { # The creator&#x27;s avatar.
443 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
444 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800445 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
446 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800447 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800448 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700449 },
450 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800451 },
452 &quot;pages&quot;: { # The container of pages in this blog.
453 &quot;totalItems&quot;: 42, # The count of pages in this blog.
454 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700455 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700456 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800457 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
458 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
459 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700460 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800461 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
462 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
463 &quot;locale&quot;: { # The locale this Blog is set to.
464 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
465 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
466 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
467 },
468 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
469 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700470 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800471 &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;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
474 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
475 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
476 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700480 },
481 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800482 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800483 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
484 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800485 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800486 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800487 &quot;totalItems&quot;: 42, # The count of posts in this blog.
488 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800489 &quot;items&quot;: [ # The List of Posts for this Blog.
490 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800491 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800492 &quot;images&quot;: [ # Display image for the Post.
493 {
494 &quot;url&quot;: &quot;A String&quot;,
495 },
496 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800497 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
498 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
499 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
500 &quot;replies&quot;: { # The container of comments on this Post.
501 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
502 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
503 &quot;items&quot;: [ # The List of Comments for this Post.
504 {
505 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
506 &quot;post&quot;: { # Data about the post containing this comment.
507 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
508 },
509 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
510 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
511 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
512 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
513 },
514 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
515 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
516 &quot;author&quot;: { # The author of this Comment.
517 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
518 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
519 &quot;image&quot;: { # The creator&#x27;s avatar.
520 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
521 },
522 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
523 },
524 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
525 &quot;blog&quot;: { # Data about the blog containing this comment.
526 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
527 },
528 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
529 },
530 ],
531 },
532 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
533 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
534 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
535 &quot;A String&quot;,
536 ],
537 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
538 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800539 &quot;blog&quot;: { # Data about the blog containing this Post.
540 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
541 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800542 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
543 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
544 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
545 &quot;location&quot;: { # The location for geotagged posts.
546 &quot;name&quot;: &quot;A String&quot;, # Location name.
547 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
548 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
549 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
550 },
551 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800552 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800553 &quot;author&quot;: { # The author of this Post.
554 &quot;image&quot;: { # The creator&#x27;s avatar.
555 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
556 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800557 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
558 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800559 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800560 },
561 },
562 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800563 },
564 &quot;pages&quot;: { # The container of pages in this blog.
565 &quot;totalItems&quot;: 42, # The count of pages in this blog.
566 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800567 },
568 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800569 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
570 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
571 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800572 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800573 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
574 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
575 &quot;locale&quot;: { # The locale this Blog is set to.
576 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
577 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
578 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
579 },
580 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
581 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800582 },
583 ],
John Asmuth614db982014-04-24 15:46:26 -0400584 }</pre>
585</div>
586
587</body></html>