blob: ab5dcd3b319ecd0f9ca84bd530c6fde1c3752a51 [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 Kim4ed7d3f2020-05-27 12:20:54 -070084 <code><a href="#listByUser">listByUser(userId, fetchUserInfo=None, role=None, view=None, status=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 Kim65020912020-05-20 12:08:20 -0700104 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700105 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
106 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700107 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700108 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400109 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700110 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700111 &quot;author&quot;: { # The author of this Post.
112 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700113 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700114 &quot;image&quot;: { # The creator&#x27;s avatar.
115 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
116 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700117 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
John Asmuth614db982014-04-24 15:46:26 -0400118 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700119 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
120 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
121 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
122 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
123 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
124 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
125 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
126 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
127 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
128 &quot;location&quot;: { # The location for geotagged posts.
129 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
130 &quot;name&quot;: &quot;A String&quot;, # Location name.
131 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
132 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
133 },
134 &quot;replies&quot;: { # The container of comments on this Post.
135 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
136 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
137 &quot;items&quot;: [ # The List of Comments for this Post.
138 {
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;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
143 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
144 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
145 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
146 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
147 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
148 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
149 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
150 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
151 },
152 &quot;author&quot;: { # The author of this Comment.
153 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
154 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
155 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
156 &quot;image&quot;: { # The creator&#x27;s avatar.
157 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
158 },
159 },
160 &quot;blog&quot;: { # Data about the blog containing this comment.
161 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
162 },
163 },
164 ],
165 },
166 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
167 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
168 &quot;blog&quot;: { # Data about the blog containing this Post.
169 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
170 },
171 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
172 &quot;A String&quot;,
173 ],
174 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700175 &quot;images&quot;: [ # Display image for the Post.
John Asmuth614db982014-04-24 15:46:26 -0400176 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700177 &quot;url&quot;: &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400178 },
179 ],
John Asmuth614db982014-04-24 15:46:26 -0400180 },
181 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700182 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700183 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400184 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700185 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
186 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700187 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
188 &quot;locale&quot;: { # The locale this Blog is set to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700189 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700190 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700191 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
John Asmuth614db982014-04-24 15:46:26 -0400192 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700193 &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 -0700194 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700195 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
196 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
197 &quot;pages&quot;: { # The container of pages in this blog.
198 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
199 &quot;totalItems&quot;: 42, # The count of pages in this blog.
200 },
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 Kim65020912020-05-20 12:08:20 -0700220 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700221 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
222 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700223 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700224 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400225 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700226 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700227 &quot;author&quot;: { # The author of this Post.
228 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700229 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700230 &quot;image&quot;: { # The creator&#x27;s avatar.
231 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
232 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700233 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
John Asmuth614db982014-04-24 15:46:26 -0400234 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700235 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
236 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
237 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
238 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
239 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
240 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
241 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
242 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
243 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
244 &quot;location&quot;: { # The location for geotagged posts.
245 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
246 &quot;name&quot;: &quot;A String&quot;, # Location name.
247 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
248 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
249 },
250 &quot;replies&quot;: { # The container of comments on this Post.
251 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
252 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
253 &quot;items&quot;: [ # The List of Comments for this Post.
254 {
255 &quot;post&quot;: { # Data about the post containing this comment.
256 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
257 },
258 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
259 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
260 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
261 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
262 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
263 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
264 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
265 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
266 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
267 },
268 &quot;author&quot;: { # The author of this Comment.
269 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
270 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
271 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
272 &quot;image&quot;: { # The creator&#x27;s avatar.
273 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
274 },
275 },
276 &quot;blog&quot;: { # Data about the blog containing this comment.
277 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
278 },
279 },
280 ],
281 },
282 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
283 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
284 &quot;blog&quot;: { # Data about the blog containing this Post.
285 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
286 },
287 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
288 &quot;A String&quot;,
289 ],
290 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700291 &quot;images&quot;: [ # Display image for the Post.
John Asmuth614db982014-04-24 15:46:26 -0400292 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700293 &quot;url&quot;: &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400294 },
295 ],
John Asmuth614db982014-04-24 15:46:26 -0400296 },
297 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700298 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700299 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400300 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700301 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
302 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700303 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
304 &quot;locale&quot;: { # The locale this Blog is set to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700305 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700306 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700307 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
John Asmuth614db982014-04-24 15:46:26 -0400308 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700309 &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 -0700310 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700311 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
312 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
313 &quot;pages&quot;: { # The container of pages in this blog.
314 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
315 &quot;totalItems&quot;: 42, # The count of pages in this blog.
316 },
John Asmuth614db982014-04-24 15:46:26 -0400317 }</pre>
318</div>
319
320<div class="method">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700321 <code class="details" id="listByUser">listByUser(userId, fetchUserInfo=None, role=None, view=None, status=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 fetchUserInfo: boolean, A parameter
327 role: string, A parameter (repeated)
Bu Sun Kim65020912020-05-20 12:08:20 -0700328 view: string, A parameter
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700329 status: string, Default value of status is LIVE. (repeated)
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;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
340 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
John Asmuth614db982014-04-24 15:46:26 -0400341 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700342 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700343 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
344 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700345 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700346 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400347 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700348 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700349 &quot;author&quot;: { # The author of this Post.
350 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700351 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700352 &quot;image&quot;: { # The creator&#x27;s avatar.
353 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
354 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700355 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
John Asmuth614db982014-04-24 15:46:26 -0400356 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700357 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
358 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
359 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
360 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
361 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
362 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
363 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
364 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
365 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
366 &quot;location&quot;: { # The location for geotagged posts.
367 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
368 &quot;name&quot;: &quot;A String&quot;, # Location name.
369 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
370 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
371 },
372 &quot;replies&quot;: { # The container of comments on this Post.
373 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
374 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
375 &quot;items&quot;: [ # The List of Comments for this Post.
376 {
377 &quot;post&quot;: { # Data about the post containing this comment.
378 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
379 },
380 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
381 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
382 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
383 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
384 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
385 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
386 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
387 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
388 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
389 },
390 &quot;author&quot;: { # The author of this Comment.
391 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
392 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
393 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
394 &quot;image&quot;: { # The creator&#x27;s avatar.
395 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
396 },
397 },
398 &quot;blog&quot;: { # Data about the blog containing this comment.
399 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
400 },
401 },
402 ],
403 },
404 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
405 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
406 &quot;blog&quot;: { # Data about the blog containing this Post.
407 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
408 },
409 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
410 &quot;A String&quot;,
411 ],
412 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700413 &quot;images&quot;: [ # Display image for the Post.
John Asmuth614db982014-04-24 15:46:26 -0400414 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700415 &quot;url&quot;: &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400416 },
417 ],
John Asmuth614db982014-04-24 15:46:26 -0400418 },
419 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700420 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700421 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400422 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700423 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
424 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700425 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
426 &quot;locale&quot;: { # The locale this Blog is set to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700427 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700428 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700429 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
John Asmuth614db982014-04-24 15:46:26 -0400430 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700431 &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 -0700432 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700433 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
434 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
435 &quot;pages&quot;: { # The container of pages in this blog.
436 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
437 &quot;totalItems&quot;: 42, # The count of pages in this blog.
438 },
John Asmuth614db982014-04-24 15:46:26 -0400439 },
440 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700441 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
John Asmuth614db982014-04-24 15:46:26 -0400442 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700443 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
Bu Sun Kim65020912020-05-20 12:08:20 -0700444 &quot;blog&quot;: { # The Blog resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700445 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700446 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
447 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700448 &quot;posts&quot;: { # The container of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700449 &quot;items&quot;: [ # The List of Posts for this Blog.
John Asmuth614db982014-04-24 15:46:26 -0400450 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700451 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700452 &quot;author&quot;: { # The author of this Post.
453 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700454 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700455 &quot;image&quot;: { # The creator&#x27;s avatar.
456 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
457 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700458 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
John Asmuth614db982014-04-24 15:46:26 -0400459 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700460 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
461 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
462 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
463 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
464 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
465 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
466 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
467 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
468 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
469 &quot;location&quot;: { # The location for geotagged posts.
470 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
471 &quot;name&quot;: &quot;A String&quot;, # Location name.
472 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
473 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
474 },
475 &quot;replies&quot;: { # The container of comments on this Post.
476 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
477 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
478 &quot;items&quot;: [ # The List of Comments for this Post.
479 {
480 &quot;post&quot;: { # Data about the post containing this comment.
481 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
482 },
483 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
484 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
485 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
486 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
487 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
488 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
489 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
490 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
491 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
492 },
493 &quot;author&quot;: { # The author of this Comment.
494 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
495 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
496 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
497 &quot;image&quot;: { # The creator&#x27;s avatar.
498 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
499 },
500 },
501 &quot;blog&quot;: { # Data about the blog containing this comment.
502 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
503 },
504 },
505 ],
506 },
507 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
508 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
509 &quot;blog&quot;: { # Data about the blog containing this Post.
510 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
511 },
512 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
513 &quot;A String&quot;,
514 ],
515 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700516 &quot;images&quot;: [ # Display image for the Post.
John Asmuth614db982014-04-24 15:46:26 -0400517 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700518 &quot;url&quot;: &quot;A String&quot;,
John Asmuth614db982014-04-24 15:46:26 -0400519 },
520 ],
John Asmuth614db982014-04-24 15:46:26 -0400521 },
522 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700523 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700524 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
John Asmuth614db982014-04-24 15:46:26 -0400525 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700526 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
527 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700528 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
529 &quot;locale&quot;: { # The locale this Blog is set to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700530 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700531 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700532 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
John Asmuth614db982014-04-24 15:46:26 -0400533 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700534 &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 -0700535 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700536 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
537 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
538 &quot;pages&quot;: { # The container of pages in this blog.
539 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
540 &quot;totalItems&quot;: 42, # The count of pages in this blog.
541 },
John Asmuth614db982014-04-24 15:46:26 -0400542 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700543 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
544 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
545 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or
546 # READER).
547 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
548 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
549 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
550 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
551 },
John Asmuth614db982014-04-24 15:46:26 -0400552 },
553 ],
554 }</pre>
555</div>
556
557</body></html>