blob: cb5bfe541514fd2f40593658f7fa79e27875d168 [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">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070078 <code><a href="#get">get(blogId, maxPosts=None, view=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070079<p class="firstline">Gets a blog by id.</p>
John Asmuth614db982014-04-24 15:46:26 -040080<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070081 <code><a href="#getByUrl">getByUrl(url, view=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070082<p class="firstline">Gets a blog by url.</p>
John Asmuth614db982014-04-24 15:46:26 -040083<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070084 <code><a href="#listByUser">listByUser(userId, role=None, status=None, view=None, fetchUserInfo=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070085<p class="firstline">Lists blogs by user.</p>
John Asmuth614db982014-04-24 15:46:26 -040086<h3>Method Details</h3>
87<div class="method">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070088 <code class="details" id="get">get(blogId, maxPosts=None, view=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -070089 <pre>Gets a blog by id.
John Asmuth614db982014-04-24 15:46:26 -040090
91Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070092 blogId: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -070093 maxPosts: integer, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070094 view: string, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -070095 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -040096 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -070097 1 - v1 error format
98 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -040099
100Returns:
101 An object of the form:
102
103 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700104 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
Bu Sun Kim65020912020-05-20 12:08:20 -0700105 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700106 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700107 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
108 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
109 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
110 &quot;pages&quot;: { # The container of pages in this blog.
111 &quot;totalItems&quot;: 42, # The count of pages in this blog.
112 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
113 },
114 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
115 &quot;locale&quot;: { # The locale this Blog is set to.
116 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
117 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
118 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
119 },
120 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
Bu Sun Kim65020912020-05-20 12:08:20 -0700121 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700122 &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 -0700123 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400124 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700125 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 &quot;author&quot;: { # The author of this Post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700127 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700128 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kim65020912020-05-20 12:08:20 -0700129 &quot;image&quot;: { # The creator&#x27;s avatar.
130 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
131 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700132 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400133 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700134 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700135 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700136 &quot;images&quot;: [ # Display image for the Post.
John Asmuth614db982014-04-24 15:46:26 -0400137 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700138 &quot;url&quot;: &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400139 },
140 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700141 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
142 &quot;A String&quot;,
143 ],
144 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
145 &quot;location&quot;: { # The location for geotagged posts.
146 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
147 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
148 &quot;name&quot;: &quot;A String&quot;, # Location name.
149 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
150 },
151 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
152 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
153 &quot;blog&quot;: { # Data about the blog containing this Post.
154 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
155 },
156 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
157 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
158 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
159 &quot;replies&quot;: { # The container of comments on this Post.
160 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
161 &quot;items&quot;: [ # The List of Comments for this Post.
162 {
163 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
164 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
165 &quot;post&quot;: { # Data about the post containing this comment.
166 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
167 },
168 &quot;blog&quot;: { # Data about the blog containing this comment.
169 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
170 },
171 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
172 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
173 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
174 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
175 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
176 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
177 },
178 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
179 &quot;author&quot;: { # The author of this Comment.
180 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
181 &quot;image&quot;: { # The creator&#x27;s avatar.
182 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
183 },
184 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
185 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
186 },
187 },
188 ],
189 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
190 },
191 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
192 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
193 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
194 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
John Asmuth614db982014-04-24 15:46:26 -0400195 },
196 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700197 &quot;totalItems&quot;: 42, # The count of posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400198 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700199 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700200 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
John Asmuth614db982014-04-24 15:46:26 -0400201 }</pre>
202</div>
203
204<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700205 <code class="details" id="getByUrl">getByUrl(url, view=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700206 <pre>Gets a blog by url.
John Asmuth614db982014-04-24 15:46:26 -0400207
208Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700209 url: string, A parameter (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700210 view: string, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700211 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -0400212 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700213 1 - v1 error format
214 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400215
216Returns:
217 An object of the form:
218
219 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700220 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
Bu Sun Kim65020912020-05-20 12:08:20 -0700221 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700222 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700223 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
224 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
225 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
226 &quot;pages&quot;: { # The container of pages in this blog.
227 &quot;totalItems&quot;: 42, # The count of pages in this blog.
228 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
229 },
230 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
231 &quot;locale&quot;: { # The locale this Blog is set to.
232 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
233 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
234 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
235 },
236 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
Bu Sun Kim65020912020-05-20 12:08:20 -0700237 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700238 &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 -0700239 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400240 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700241 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700242 &quot;author&quot;: { # The author of this Post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700243 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700244 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kim65020912020-05-20 12:08:20 -0700245 &quot;image&quot;: { # The creator&#x27;s avatar.
246 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
247 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700248 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400249 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700250 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700251 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700252 &quot;images&quot;: [ # Display image for the Post.
John Asmuth614db982014-04-24 15:46:26 -0400253 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700254 &quot;url&quot;: &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400255 },
256 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700257 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
258 &quot;A String&quot;,
259 ],
260 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
261 &quot;location&quot;: { # The location for geotagged posts.
262 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
263 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
264 &quot;name&quot;: &quot;A String&quot;, # Location name.
265 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
266 },
267 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
268 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
269 &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 },
272 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
273 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
274 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
275 &quot;replies&quot;: { # The container of comments on this Post.
276 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
277 &quot;items&quot;: [ # The List of Comments for this Post.
278 {
279 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
280 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
281 &quot;post&quot;: { # Data about the post containing this comment.
282 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
283 },
284 &quot;blog&quot;: { # Data about the blog containing this comment.
285 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
286 },
287 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
288 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
289 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
290 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
291 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
292 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
293 },
294 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
295 &quot;author&quot;: { # The author of this Comment.
296 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
297 &quot;image&quot;: { # The creator&#x27;s avatar.
298 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
299 },
300 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
301 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
302 },
303 },
304 ],
305 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
306 },
307 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
308 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
309 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
310 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
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.
John Asmuth614db982014-04-24 15:46:26 -0400314 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700315 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700316 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
John Asmuth614db982014-04-24 15:46:26 -0400317 }</pre>
318</div>
319
320<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700321 <code class="details" id="listByUser">listByUser(userId, role=None, status=None, view=None, fetchUserInfo=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700322 <pre>Lists blogs by user.
John Asmuth614db982014-04-24 15:46:26 -0400323
324Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700325 userId: string, A parameter (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700326 role: string, A parameter (repeated)
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700327 status: string, Default value of status is LIVE. (repeated)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700328 view: string, A parameter
329 fetchUserInfo: boolean, A parameter
Dan O'Mearadd494642020-05-01 07:42:23 -0700330 x__xgafv: string, V1 error format.
Craig Citro065b5302014-08-14 00:47:23 -0700331 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700332 1 - v1 error format
333 2 - v2 error format
John Asmuth614db982014-04-24 15:46:26 -0400334
335Returns:
336 An object of the form:
337
338 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700339 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
John Asmuth614db982014-04-24 15:46:26 -0400340 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700341 &quot;blog&quot;: { # The Blog resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700342 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
Bu Sun Kim65020912020-05-20 12:08:20 -0700343 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700344 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700345 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
346 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
347 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
348 &quot;pages&quot;: { # The container of pages in this blog.
349 &quot;totalItems&quot;: 42, # The count of pages in this blog.
350 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
351 },
352 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
353 &quot;locale&quot;: { # The locale this Blog is set to.
354 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
355 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
356 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
357 },
358 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
Bu Sun Kim65020912020-05-20 12:08:20 -0700359 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700360 &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 -0700361 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400362 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700363 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700364 &quot;author&quot;: { # The author of this Post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700365 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700366 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kim65020912020-05-20 12:08:20 -0700367 &quot;image&quot;: { # The creator&#x27;s avatar.
368 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
369 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700370 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400371 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700372 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700373 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700374 &quot;images&quot;: [ # Display image for the Post.
John Asmuth614db982014-04-24 15:46:26 -0400375 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700376 &quot;url&quot;: &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400377 },
378 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700379 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
380 &quot;A String&quot;,
381 ],
382 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
383 &quot;location&quot;: { # The location for geotagged posts.
384 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
385 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
386 &quot;name&quot;: &quot;A String&quot;, # Location name.
387 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
388 },
389 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
390 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
391 &quot;blog&quot;: { # Data about the blog containing this Post.
392 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
393 },
394 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
395 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
396 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
397 &quot;replies&quot;: { # The container of comments on this Post.
398 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
399 &quot;items&quot;: [ # The List of Comments for this Post.
400 {
401 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
402 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
403 &quot;post&quot;: { # Data about the post containing this comment.
404 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
405 },
406 &quot;blog&quot;: { # Data about the blog containing this comment.
407 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
408 },
409 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
410 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
411 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
412 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
413 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
414 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
415 },
416 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
417 &quot;author&quot;: { # The author of this Comment.
418 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
419 &quot;image&quot;: { # The creator&#x27;s avatar.
420 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
421 },
422 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
423 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
424 },
425 },
426 ],
427 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
428 },
429 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
430 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
431 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
432 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
John Asmuth614db982014-04-24 15:46:26 -0400433 },
434 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700435 &quot;totalItems&quot;: 42, # The count of posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400436 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700437 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700438 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
John Asmuth614db982014-04-24 15:46:26 -0400439 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700440 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700441 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700442 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or
443 # READER).
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700444 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700445 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
446 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
447 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700448 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
449 },
John Asmuth614db982014-04-24 15:46:26 -0400450 },
451 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700452 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
453 {
454 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
455 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
456 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
457 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
458 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
459 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
460 &quot;pages&quot;: { # The container of pages in this blog.
461 &quot;totalItems&quot;: 42, # The count of pages in this blog.
462 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
463 },
464 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
465 &quot;locale&quot;: { # The locale this Blog is set to.
466 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
467 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
468 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
469 },
470 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
471 &quot;posts&quot;: { # The container of posts in this blog.
472 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
473 &quot;items&quot;: [ # The List of Posts for this Blog.
474 {
475 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
476 &quot;author&quot;: { # The author of this Post.
477 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
478 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
479 &quot;image&quot;: { # The creator&#x27;s avatar.
480 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
481 },
482 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
483 },
484 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
485 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
486 &quot;images&quot;: [ # Display image for the Post.
487 {
488 &quot;url&quot;: &quot;A String&quot;,
489 },
490 ],
491 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
492 &quot;A String&quot;,
493 ],
494 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
495 &quot;location&quot;: { # The location for geotagged posts.
496 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
497 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
498 &quot;name&quot;: &quot;A String&quot;, # Location name.
499 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
500 },
501 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
502 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
503 &quot;blog&quot;: { # Data about the blog containing this Post.
504 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
505 },
506 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
507 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
508 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
509 &quot;replies&quot;: { # The container of comments on this Post.
510 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
511 &quot;items&quot;: [ # The List of Comments for this Post.
512 {
513 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
514 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
515 &quot;post&quot;: { # Data about the post containing this comment.
516 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
517 },
518 &quot;blog&quot;: { # Data about the blog containing this comment.
519 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
520 },
521 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
522 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
523 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
524 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
525 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
526 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
527 },
528 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
529 &quot;author&quot;: { # The author of this Comment.
530 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
531 &quot;image&quot;: { # The creator&#x27;s avatar.
532 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
533 },
534 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
535 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
536 },
537 },
538 ],
539 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
540 },
541 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
542 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
543 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
544 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
545 },
546 ],
547 &quot;totalItems&quot;: 42, # The count of posts in this blog.
548 },
549 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
550 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
551 },
552 ],
553 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
John Asmuth614db982014-04-24 15:46:26 -0400554 }</pre>
555</div>
556
557</body></html>