blob: b02a81a708500cacd2ccf5421273194d74941383 [file] [log] [blame]
Sai Cheemalapatidf613972016-10-21 13:59:49 -07001<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_v2.html">Blogger API v3</a> . <a href="blogger_v2.blogs.html">blogs</a></h1>
Sai Cheemalapatidf613972016-10-21 13:59:49 -070076<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">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#get">get(blogId, x__xgafv=None)</a></code></p>
82<p class="firstline">Gets a blog by id.</p>
83<p class="toc_element">
84 <code><a href="#list">list(userId, x__xgafv=None)</a></code></p>
85<p class="firstline">Lists blogs by user id, possibly filtered.</p>
Sai Cheemalapatidf613972016-10-21 13:59:49 -070086<h3>Method Details</h3>
87<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070088 <code class="details" id="close">close()</code>
89 <pre>Close httplib2 connections.</pre>
90</div>
91
92<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070093 <code class="details" id="get">get(blogId, x__xgafv=None)</code>
94 <pre>Gets a blog by id.
Sai Cheemalapatidf613972016-10-21 13:59:49 -070095
96Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070097 blogId: string, A parameter (required)
98 x__xgafv: string, V1 error format.
99 Allowed values
100 1 - v1 error format
101 2 - v2 error format
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700102
103Returns:
104 An object of the form:
105
106 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800107 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800108 &quot;pages&quot;: { # The container of pages in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800109 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800110 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800111 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800112 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700113 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800114 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
115 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
116 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
117 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
118 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700119 &quot;posts&quot;: { # The container of posts in this blog.
120 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700121 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800122 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800123 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800124 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800125 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700126 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
127 &quot;A String&quot;,
128 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800129 &quot;author&quot;: { # The author of this Post.
130 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
131 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
132 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
133 &quot;image&quot;: { # The creator&#x27;s avatar.
134 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
135 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700136 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800137 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700138 &quot;location&quot;: { # The location for geotagged posts.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700139 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800140 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700141 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700142 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
143 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800144 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
145 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800146 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800147 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
148 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
149 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
150 &quot;blog&quot;: { # Data about the blog containing this Post.
151 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
152 },
153 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
154 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
155 &quot;replies&quot;: { # The container of comments on this Post.
156 &quot;items&quot;: [ # The List of Comments for this Post.
157 {
158 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
159 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
160 &quot;author&quot;: { # The author of this Comment.
161 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
162 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
163 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
164 &quot;image&quot;: { # The creator&#x27;s avatar.
165 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
166 },
167 },
168 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
169 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
170 &quot;post&quot;: { # Data about the post containing this comment.
171 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
172 },
173 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
174 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
175 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
176 &quot;blog&quot;: { # Data about the blog containing this comment.
177 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
178 },
179 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
180 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
181 },
182 },
183 ],
184 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
185 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
186 },
187 &quot;images&quot;: [ # Display image for the Post.
188 {
189 &quot;url&quot;: &quot;A String&quot;,
190 },
191 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700192 },
193 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800194 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700195 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700196 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800197 &quot;locale&quot;: { # The locale this Blog is set to.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800198 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
199 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800200 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800201 },
202 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800203 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700204 }</pre>
205</div>
206
207<div class="method">
208 <code class="details" id="list">list(userId, x__xgafv=None)</code>
209 <pre>Lists blogs by user id, possibly filtered.
210
211Args:
212 userId: string, A parameter (required)
213 x__xgafv: string, V1 error format.
214 Allowed values
215 1 - v1 error format
216 2 - v2 error format
217
218Returns:
219 An object of the form:
220
221 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700222 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
223 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800224 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800225 &quot;pages&quot;: { # The container of pages in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800226 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800227 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800228 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800229 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700230 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800231 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
232 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
233 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
234 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
235 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700236 &quot;posts&quot;: { # The container of posts in this blog.
237 &quot;items&quot;: [ # The List of Posts for this Blog.
238 {
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800239 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800240 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800241 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800242 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700243 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
244 &quot;A String&quot;,
245 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800246 &quot;author&quot;: { # The author of this Post.
247 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
248 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
249 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
250 &quot;image&quot;: { # The creator&#x27;s avatar.
251 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
252 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700253 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800254 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700255 &quot;location&quot;: { # The location for geotagged posts.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700256 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800257 &quot;name&quot;: &quot;A String&quot;, # Location name.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700258 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700259 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
260 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800261 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
262 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800263 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800264 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
265 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
266 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
267 &quot;blog&quot;: { # Data about the blog containing this Post.
268 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
269 },
270 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
271 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
272 &quot;replies&quot;: { # The container of comments on this Post.
273 &quot;items&quot;: [ # The List of Comments for this Post.
274 {
275 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
276 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
277 &quot;author&quot;: { # The author of this Comment.
278 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
279 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
280 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
281 &quot;image&quot;: { # The creator&#x27;s avatar.
282 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
283 },
284 },
285 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
286 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
287 &quot;post&quot;: { # Data about the post containing this comment.
288 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
289 },
290 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
291 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
292 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
293 &quot;blog&quot;: { # Data about the blog containing this comment.
294 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
295 },
296 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
297 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
298 },
299 },
300 ],
301 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
302 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
303 },
304 &quot;images&quot;: [ # Display image for the Post.
305 {
306 &quot;url&quot;: &quot;A String&quot;,
307 },
308 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700309 },
310 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800311 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700312 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700313 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800314 &quot;locale&quot;: { # The locale this Blog is set to.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800315 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
316 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800317 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800318 },
319 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800320 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700321 },
322 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800323 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
324 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
325 {
326 &quot;blog&quot;: { # The Blog resource.
327 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
328 &quot;pages&quot;: { # The container of pages in this blog.
329 &quot;totalItems&quot;: 42, # The count of pages in this blog.
330 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
331 },
332 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
333 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
334 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
335 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
336 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
337 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
338 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
339 &quot;posts&quot;: { # The container of posts in this blog.
340 &quot;items&quot;: [ # The List of Posts for this Blog.
341 {
342 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
343 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
344 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
345 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
346 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
347 &quot;A String&quot;,
348 ],
349 &quot;author&quot;: { # The author of this Post.
350 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
351 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
352 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
353 &quot;image&quot;: { # The creator&#x27;s avatar.
354 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
355 },
356 },
357 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
358 &quot;location&quot;: { # The location for geotagged posts.
359 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
360 &quot;name&quot;: &quot;A String&quot;, # Location name.
361 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
362 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
363 },
364 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
365 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
366 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
367 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
368 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
369 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
370 &quot;blog&quot;: { # Data about the blog containing this Post.
371 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
372 },
373 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
374 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
375 &quot;replies&quot;: { # The container of comments on this Post.
376 &quot;items&quot;: [ # The List of Comments for this Post.
377 {
378 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
379 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
380 &quot;author&quot;: { # The author of this Comment.
381 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
382 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
383 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
384 &quot;image&quot;: { # The creator&#x27;s avatar.
385 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
386 },
387 },
388 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
389 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
390 &quot;post&quot;: { # Data about the post containing this comment.
391 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
392 },
393 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
394 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
395 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
396 &quot;blog&quot;: { # Data about the blog containing this comment.
397 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
398 },
399 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
400 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
401 },
402 },
403 ],
404 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
405 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
406 },
407 &quot;images&quot;: [ # Display image for the Post.
408 {
409 &quot;url&quot;: &quot;A String&quot;,
410 },
411 ],
412 },
413 ],
414 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
415 &quot;totalItems&quot;: 42, # The count of posts in this blog.
416 },
417 &quot;locale&quot;: { # The locale this Blog is set to.
418 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
419 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
420 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
421 },
422 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
423 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
424 },
425 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
426 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
427 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
428 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
429 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
430 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
431 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
432 },
433 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
434 },
435 ],
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700436 }</pre>
437</div>
438
439</body></html>