blob: 9a0e0ff8c8561b81575afb830fc19ce04498688f [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">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070087 <code><a href="#listByUser">listByUser(userId, status=None, role=None, fetchUserInfo=None, view=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 Kim65020912020-05-20 12:08:20 -0700117 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700118 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400119 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700120 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700121 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700122 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700123 &quot;author&quot;: { # The author of this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700124 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700125 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 &quot;image&quot;: { # The creator&#x27;s avatar.
127 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
128 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700129 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400130 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700131 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700132 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
133 &quot;A String&quot;,
134 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700135 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700136 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
137 &quot;location&quot;: { # The location for geotagged posts.
138 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700139 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700140 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
141 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700142 },
143 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700144 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
145 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
146 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
147 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700148 &quot;blog&quot;: { # Data about the blog containing this Post.
149 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
150 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700151 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700152 &quot;replies&quot;: { # The container of comments on this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700153 &quot;items&quot;: [ # The List of Comments for this Post.
154 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700155 &quot;author&quot;: { # The author of this Comment.
156 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
157 &quot;image&quot;: { # The creator&#x27;s avatar.
158 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
159 },
160 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
161 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
162 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700163 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
164 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
165 },
166 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
167 &quot;post&quot;: { # Data about the post containing this comment.
168 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
169 },
170 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
171 &quot;blog&quot;: { # Data about the blog containing this comment.
172 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
173 },
174 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
175 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
176 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
177 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
178 &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 -0700179 },
180 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700181 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700182 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
183 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700184 &quot;images&quot;: [ # Display image for the Post.
185 {
186 &quot;url&quot;: &quot;A String&quot;,
187 },
188 ],
189 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
John Asmuth614db982014-04-24 15:46:26 -0400190 },
191 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700192 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700193 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400194 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700195 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
196 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700197 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700198 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
199 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
200 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
201 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
202 &quot;pages&quot;: { # The container of pages in this blog.
203 &quot;totalItems&quot;: 42, # The count of pages in this blog.
204 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
205 },
206 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
207 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
208 &quot;locale&quot;: { # The locale this Blog is set to.
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 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
212 },
213 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
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 Kim65020912020-05-20 12:08:20 -0700238 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700239 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400240 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700241 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700242 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700243 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700244 &quot;author&quot;: { # The author of this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700245 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700246 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700247 &quot;image&quot;: { # The creator&#x27;s avatar.
248 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
249 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700250 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400251 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700252 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700253 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
254 &quot;A String&quot;,
255 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700256 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700257 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
258 &quot;location&quot;: { # The location for geotagged posts.
259 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700260 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700261 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
262 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700263 },
264 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700265 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
266 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
267 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
268 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700269 &quot;blog&quot;: { # Data about the blog containing this Post.
270 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
271 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700272 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700273 &quot;replies&quot;: { # The container of comments on this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700274 &quot;items&quot;: [ # The List of Comments for this Post.
275 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700276 &quot;author&quot;: { # The author of this Comment.
277 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
278 &quot;image&quot;: { # The creator&#x27;s avatar.
279 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
280 },
281 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
282 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
283 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700284 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
285 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
286 },
287 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
288 &quot;post&quot;: { # Data about the post containing this comment.
289 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
290 },
291 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
292 &quot;blog&quot;: { # Data about the blog containing this comment.
293 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
294 },
295 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
296 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
297 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
298 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
299 &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 -0700300 },
301 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700302 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700303 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
304 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700305 &quot;images&quot;: [ # Display image for the Post.
306 {
307 &quot;url&quot;: &quot;A String&quot;,
308 },
309 ],
310 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
John Asmuth614db982014-04-24 15:46:26 -0400311 },
312 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700313 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700314 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400315 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700316 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
317 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700318 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700319 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
320 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
321 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
322 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
323 &quot;pages&quot;: { # The container of pages in this blog.
324 &quot;totalItems&quot;: 42, # The count of pages in this blog.
325 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
326 },
327 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
328 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
329 &quot;locale&quot;: { # The locale this Blog is set to.
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 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
333 },
334 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
John Asmuth614db982014-04-24 15:46:26 -0400335 }</pre>
336</div>
337
338<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700339 <code class="details" id="listByUser">listByUser(userId, status=None, role=None, fetchUserInfo=None, view=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 Kim4ed7d3f2020-05-27 12:20:54 -0700344 status: string, Default value of status is LIVE. (repeated)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700345 Allowed values
346 LIVE -
347 DELETED -
348 role: string, A parameter (repeated)
349 Allowed values
350 VIEW_TYPE_UNSPECIFIED -
351 READER -
352 AUTHOR -
353 ADMIN -
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700354 fetchUserInfo: boolean, A parameter
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700355 view: string, A parameter
356 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 Kim65020912020-05-20 12:08:20 -0700370 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
John Asmuth614db982014-04-24 15:46:26 -0400371 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700372 &quot;blog&quot;: { # The Blog resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700373 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700374 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400375 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700376 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700377 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700378 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700379 &quot;author&quot;: { # The author of this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700380 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700381 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700382 &quot;image&quot;: { # The creator&#x27;s avatar.
383 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
384 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700385 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400386 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700387 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700388 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
389 &quot;A String&quot;,
390 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700391 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700392 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
393 &quot;location&quot;: { # The location for geotagged posts.
394 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700395 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700396 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
397 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700398 },
399 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700400 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
401 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
402 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
403 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700404 &quot;blog&quot;: { # Data about the blog containing this Post.
405 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
406 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700407 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700408 &quot;replies&quot;: { # The container of comments on this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700409 &quot;items&quot;: [ # The List of Comments for this Post.
410 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700411 &quot;author&quot;: { # The author of this Comment.
412 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
413 &quot;image&quot;: { # The creator&#x27;s avatar.
414 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
415 },
416 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
417 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
418 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700419 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
420 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
421 },
422 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
423 &quot;post&quot;: { # Data about the post containing this comment.
424 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
425 },
426 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
427 &quot;blog&quot;: { # Data about the blog containing this comment.
428 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
429 },
430 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
431 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
432 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
433 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
434 &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 -0700435 },
436 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700437 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700438 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
439 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700440 &quot;images&quot;: [ # Display image for the Post.
441 {
442 &quot;url&quot;: &quot;A String&quot;,
443 },
444 ],
445 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
John Asmuth614db982014-04-24 15:46:26 -0400446 },
447 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700448 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700449 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400450 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700451 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
452 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700453 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700454 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
455 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
456 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
457 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
458 &quot;pages&quot;: { # The container of pages in this blog.
459 &quot;totalItems&quot;: 42, # The count of pages in this blog.
460 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
461 },
462 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
463 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
464 &quot;locale&quot;: { # The locale this Blog is set to.
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 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
468 },
469 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
John Asmuth614db982014-04-24 15:46:26 -0400470 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700471 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700472 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700473 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access 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;userId&quot;: &quot;A String&quot;, # ID of the User.
476 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700477 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700478 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700479 },
John Asmuth614db982014-04-24 15:46:26 -0400480 },
481 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700482 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700483 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
484 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700485 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700486 &quot;items&quot;: [ # The List of Posts for this Blog.
487 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700488 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700489 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700490 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700491 &quot;author&quot;: { # The author of this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700492 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700493 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700494 &quot;image&quot;: { # The creator&#x27;s avatar.
495 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
496 },
497 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
498 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700499 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700500 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
501 &quot;A String&quot;,
502 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700503 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700504 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
505 &quot;location&quot;: { # The location for geotagged posts.
506 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700507 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700508 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
509 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700510 },
511 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700512 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
513 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
514 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
515 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700516 &quot;blog&quot;: { # Data about the blog containing this Post.
517 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
518 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700519 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700520 &quot;replies&quot;: { # The container of comments on this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700521 &quot;items&quot;: [ # The List of Comments for this Post.
522 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700523 &quot;author&quot;: { # The author of this Comment.
524 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
525 &quot;image&quot;: { # The creator&#x27;s avatar.
526 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
527 },
528 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
529 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
530 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700531 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
532 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
533 },
534 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
535 &quot;post&quot;: { # Data about the post containing this comment.
536 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
537 },
538 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
539 &quot;blog&quot;: { # Data about the blog containing this comment.
540 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
541 },
542 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
543 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
544 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
545 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
546 &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 -0700547 },
548 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700549 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700550 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
551 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700552 &quot;images&quot;: [ # Display image for the Post.
553 {
554 &quot;url&quot;: &quot;A String&quot;,
555 },
556 ],
557 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700558 },
559 ],
560 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700561 &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 -0700562 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700563 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
564 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700565 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700566 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
567 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
568 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
569 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
570 &quot;pages&quot;: { # The container of pages in this blog.
571 &quot;totalItems&quot;: 42, # The count of pages in this blog.
572 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
573 },
574 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
575 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
576 &quot;locale&quot;: { # The locale this Blog is set to.
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 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
580 },
581 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
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>