blob: 3dcceb6139108ee9db61d33aad6e57eea3899808 [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">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070081 <code><a href="#get">get(blogId, maxPosts=None, view=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">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070087 <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">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070096 <code class="details" id="get">get(blogId, maxPosts=None, view=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 Kim65020912020-05-20 12:08:20 -0700101 maxPosts: integer, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700102 view: string, A parameter
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700103 Allowed values
104 VIEW_TYPE_UNSPECIFIED -
105 READER -
106 AUTHOR -
107 ADMIN -
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 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700117 &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;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
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;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
123 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
124 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
125 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700127 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400128 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700129 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700130 &quot;replies&quot;: { # The container of comments on this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700131 &quot;items&quot;: [ # The List of Comments for this Post.
132 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700133 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
134 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
135 &quot;blog&quot;: { # Data about the blog containing this comment.
136 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
137 },
138 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
139 &quot;post&quot;: { # Data about the post containing this comment.
140 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
141 },
142 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
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;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
147 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
148 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700149 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700150 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700151 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
152 &quot;image&quot;: { # The creator&#x27;s avatar.
153 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
154 },
155 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700156 },
157 },
158 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700159 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700160 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
161 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700162 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
163 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
164 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
165 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
166 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
167 &quot;blog&quot;: { # Data about the blog containing this Post.
168 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
169 },
170 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
171 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
172 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
173 &quot;author&quot;: { # The author of this Post.
174 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
175 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
176 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
177 &quot;image&quot;: { # The creator&#x27;s avatar.
178 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
179 },
180 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700181 &quot;images&quot;: [ # Display image for the Post.
182 {
183 &quot;url&quot;: &quot;A String&quot;,
184 },
185 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700186 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
187 &quot;location&quot;: { # The location for geotagged posts.
188 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
189 &quot;name&quot;: &quot;A String&quot;, # Location name.
190 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
191 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
192 },
193 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
194 &quot;A String&quot;,
195 ],
196 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
197 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700198 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
John Asmuth614db982014-04-24 15:46:26 -0400199 },
200 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700201 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700202 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400203 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700204 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700205 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
206 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700207 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
208 &quot;pages&quot;: { # The container of pages in this blog.
209 &quot;totalItems&quot;: 42, # The count of pages in this blog.
210 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
211 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700212 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700213 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
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 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700238 &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;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
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;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
244 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
245 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
246 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700247 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700248 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400249 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700250 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700251 &quot;replies&quot;: { # The container of comments on this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700252 &quot;items&quot;: [ # The List of Comments for this Post.
253 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700254 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
255 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
256 &quot;blog&quot;: { # Data about the blog containing this comment.
257 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
258 },
259 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
260 &quot;post&quot;: { # Data about the post containing this comment.
261 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
262 },
263 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
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;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
268 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
269 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700270 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700271 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700272 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
273 &quot;image&quot;: { # The creator&#x27;s avatar.
274 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
275 },
276 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700277 },
278 },
279 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700280 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700281 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
282 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700283 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
284 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
285 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
286 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
287 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
288 &quot;blog&quot;: { # Data about the blog containing this Post.
289 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
290 },
291 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
292 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
293 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
294 &quot;author&quot;: { # The author of this Post.
295 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
296 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
297 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
298 &quot;image&quot;: { # The creator&#x27;s avatar.
299 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
300 },
301 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700302 &quot;images&quot;: [ # Display image for the Post.
303 {
304 &quot;url&quot;: &quot;A String&quot;,
305 },
306 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700307 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
308 &quot;location&quot;: { # The location for geotagged posts.
309 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
310 &quot;name&quot;: &quot;A String&quot;, # Location name.
311 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
312 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
313 },
314 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
315 &quot;A String&quot;,
316 ],
317 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
318 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700319 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
John Asmuth614db982014-04-24 15:46:26 -0400320 },
321 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700322 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700323 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400324 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700325 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700326 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
327 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700328 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
329 &quot;pages&quot;: { # The container of pages in this blog.
330 &quot;totalItems&quot;: 42, # The count of pages in this blog.
331 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
332 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700333 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700334 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
John Asmuth614db982014-04-24 15:46:26 -0400335 }</pre>
336</div>
337
338<div class="method">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700339 <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)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700344 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 Kimd059ad82020-07-22 17:02:09 -0700370 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
371 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700372 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
373 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
374 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
375 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
376 &quot;locale&quot;: { # The locale this Blog is set to.
377 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
378 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
379 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
380 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700381 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700382 &quot;items&quot;: [ # The List of Posts for this Blog.
383 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700384 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700385 &quot;replies&quot;: { # The container of comments on this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700386 &quot;items&quot;: [ # The List of Comments for this Post.
387 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700388 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
389 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
390 &quot;blog&quot;: { # Data about the blog containing this comment.
391 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
392 },
393 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
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;inReplyTo&quot;: { # Data about the comment this is in reply to.
399 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
400 },
401 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
402 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
403 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700404 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700405 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700406 &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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700411 },
412 },
413 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700414 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700415 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
416 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700417 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
418 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
419 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
420 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
421 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
422 &quot;blog&quot;: { # Data about the blog containing this Post.
423 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
424 },
425 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
426 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
427 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
428 &quot;author&quot;: { # The author of this Post.
429 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
430 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
431 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
432 &quot;image&quot;: { # The creator&#x27;s avatar.
433 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
434 },
435 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700436 &quot;images&quot;: [ # Display image for the Post.
437 {
438 &quot;url&quot;: &quot;A String&quot;,
439 },
440 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700441 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
442 &quot;location&quot;: { # The location for geotagged posts.
443 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
444 &quot;name&quot;: &quot;A String&quot;, # Location name.
445 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
446 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
447 },
448 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
449 &quot;A String&quot;,
450 ],
451 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
452 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700453 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700454 },
455 ],
456 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700457 &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 -0700458 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700459 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700460 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
461 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700462 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
463 &quot;pages&quot;: { # The container of pages in this blog.
464 &quot;totalItems&quot;: 42, # The count of pages in this blog.
465 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
466 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700467 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700468 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
469 },
470 ],
471 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
472 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
473 {
474 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
475 &quot;blog&quot;: { # The Blog resource.
476 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
477 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
478 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
479 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
480 &quot;locale&quot;: { # The locale this Blog is set to.
481 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
482 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
483 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
484 },
485 &quot;posts&quot;: { # The container of posts in this blog.
486 &quot;items&quot;: [ # The List of Posts for this Blog.
487 {
488 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
489 &quot;replies&quot;: { # The container of comments on this Post.
490 &quot;items&quot;: [ # The List of Comments for this Post.
491 {
492 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
493 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
494 &quot;blog&quot;: { # Data about the blog containing this comment.
495 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
496 },
497 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
498 &quot;post&quot;: { # Data about the post containing this comment.
499 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
500 },
501 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
502 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
503 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
504 },
505 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
506 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
507 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
508 &quot;author&quot;: { # The author of this Comment.
509 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
510 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
511 &quot;image&quot;: { # The creator&#x27;s avatar.
512 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
513 },
514 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
515 },
516 },
517 ],
518 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
519 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
520 },
521 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
522 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
523 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
524 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
525 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
526 &quot;blog&quot;: { # Data about the blog containing this Post.
527 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
528 },
529 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
530 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
531 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
532 &quot;author&quot;: { # The author of this Post.
533 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
534 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
535 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
536 &quot;image&quot;: { # The creator&#x27;s avatar.
537 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
538 },
539 },
540 &quot;images&quot;: [ # Display image for the Post.
541 {
542 &quot;url&quot;: &quot;A String&quot;,
543 },
544 ],
545 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
546 &quot;location&quot;: { # The location for geotagged posts.
547 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
548 &quot;name&quot;: &quot;A String&quot;, # Location name.
549 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
550 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
551 },
552 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
553 &quot;A String&quot;,
554 ],
555 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
556 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
557 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
558 },
559 ],
560 &quot;totalItems&quot;: 42, # The count of posts in this blog.
561 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
562 },
563 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
564 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
565 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
566 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
567 &quot;pages&quot;: { # The container of pages in this blog.
568 &quot;totalItems&quot;: 42, # The count of pages in this blog.
569 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
570 },
571 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
572 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
573 },
574 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
575 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
576 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
577 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
578 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
579 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
580 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
581 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700582 },
583 ],
John Asmuth614db982014-04-24 15:46:26 -0400584 }</pre>
585</div>
586
587</body></html>