blob: 9303f7142682c0e20ff6a26e6f0426855b76d4aa [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 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700107 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700108 &quot;locale&quot;: { # The locale this Blog is set to.
109 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
110 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
111 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
112 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700113 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
114 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700115 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700116 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700117 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700118 &quot;posts&quot;: { # The container of posts in this blog.
119 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700120 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700121 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
122 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
123 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
124 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
125 &quot;blog&quot;: { # Data about the blog containing this Post.
126 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
127 },
128 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
129 &quot;A String&quot;,
130 ],
131 &quot;replies&quot;: { # The container of comments on this Post.
132 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
133 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
134 &quot;items&quot;: [ # The List of Comments for this Post.
135 {
136 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
137 &quot;blog&quot;: { # Data about the blog containing this comment.
138 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
139 },
140 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
141 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
142 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
143 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
144 &quot;author&quot;: { # The author of this Comment.
145 &quot;image&quot;: { # The creator&#x27;s avatar.
146 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
147 },
148 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
149 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
150 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
151 },
152 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
153 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
154 },
155 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
156 &quot;post&quot;: { # Data about the post containing this comment.
157 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
158 },
159 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
160 },
161 ],
162 },
163 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
164 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
165 &quot;images&quot;: [ # Display image for the Post.
166 {
167 &quot;url&quot;: &quot;A String&quot;,
168 },
169 ],
170 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
171 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
172 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
173 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
174 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
175 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
176 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700177 &quot;author&quot;: { # The author of this Post.
178 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700179 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700180 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
181 &quot;image&quot;: { # The creator&#x27;s avatar.
182 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
183 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700184 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700185 &quot;location&quot;: { # The location for geotagged posts.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700186 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700187 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700188 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700189 &quot;name&quot;: &quot;A String&quot;, # Location name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700190 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700191 },
192 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700193 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700194 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700195 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700196 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
197 &quot;pages&quot;: { # The container of pages in this blog.
198 &quot;totalItems&quot;: 42, # The count of pages in this blog.
199 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
200 },
201 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
202 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
203 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
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 Kim65020912020-05-20 12:08:20 -0700222 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
Dan O'Mearadd494642020-05-01 07:42:23 -0700223 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700224 &quot;blog&quot;: { # The Blog resource.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700225 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700226 &quot;locale&quot;: { # The locale this Blog is set to.
227 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
228 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
229 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
230 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700231 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
232 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700233 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700234 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700235 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700236 &quot;posts&quot;: { # The container of posts in this blog.
237 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700238 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700239 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
240 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
241 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
242 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
243 &quot;blog&quot;: { # Data about the blog containing this Post.
244 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
245 },
246 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
247 &quot;A String&quot;,
248 ],
249 &quot;replies&quot;: { # The container of comments on this Post.
250 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
251 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
252 &quot;items&quot;: [ # The List of Comments for this Post.
253 {
254 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
255 &quot;blog&quot;: { # Data about the blog containing this comment.
256 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
257 },
258 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
259 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
260 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
261 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
262 &quot;author&quot;: { # The author of this Comment.
263 &quot;image&quot;: { # The creator&#x27;s avatar.
264 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
265 },
266 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
267 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
268 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
269 },
270 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
271 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
272 },
273 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
274 &quot;post&quot;: { # Data about the post containing this comment.
275 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
276 },
277 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
278 },
279 ],
280 },
281 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
282 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
283 &quot;images&quot;: [ # Display image for the Post.
284 {
285 &quot;url&quot;: &quot;A String&quot;,
286 },
287 ],
288 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
289 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
290 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
291 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
292 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
293 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
294 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700295 &quot;author&quot;: { # The author of this Post.
296 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700297 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700298 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
299 &quot;image&quot;: { # The creator&#x27;s avatar.
300 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
301 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700302 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700303 &quot;location&quot;: { # The location for geotagged posts.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700304 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700305 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700306 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700307 &quot;name&quot;: &quot;A String&quot;, # Location name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700308 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700309 },
310 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700311 &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.
Dan O'Mearadd494642020-05-01 07:42:23 -0700313 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700314 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
315 &quot;pages&quot;: { # The container of pages in this blog.
316 &quot;totalItems&quot;: 42, # The count of pages in this blog.
317 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
318 },
319 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
320 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
321 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
Dan O'Mearadd494642020-05-01 07:42:23 -0700322 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700323 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700324 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
325 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
326 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
327 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
328 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
329 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
330 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
331 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700332 },
333 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700334 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700335 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
336 {
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700337 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700338 &quot;locale&quot;: { # The locale this Blog is set to.
339 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
340 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
341 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
342 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700343 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
344 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700345 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700346 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700347 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700348 &quot;posts&quot;: { # The container of posts in this blog.
349 &quot;items&quot;: [ # The List of Posts for this Blog.
350 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700351 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
352 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
353 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
354 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
355 &quot;blog&quot;: { # Data about the blog containing this Post.
356 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
357 },
358 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
359 &quot;A String&quot;,
360 ],
361 &quot;replies&quot;: { # The container of comments on this Post.
362 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
363 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
364 &quot;items&quot;: [ # The List of Comments for this Post.
365 {
366 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
367 &quot;blog&quot;: { # Data about the blog containing this comment.
368 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
369 },
370 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
371 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
372 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
373 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
374 &quot;author&quot;: { # The author of this Comment.
375 &quot;image&quot;: { # The creator&#x27;s avatar.
376 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
377 },
378 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
379 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
380 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
381 },
382 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
383 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
384 },
385 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
386 &quot;post&quot;: { # Data about the post containing this comment.
387 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
388 },
389 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
390 },
391 ],
392 },
393 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
394 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
395 &quot;images&quot;: [ # Display image for the Post.
396 {
397 &quot;url&quot;: &quot;A String&quot;,
398 },
399 ],
400 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
401 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
402 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
403 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
404 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
405 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
406 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700407 &quot;author&quot;: { # The author of this Post.
408 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700409 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700410 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
411 &quot;image&quot;: { # The creator&#x27;s avatar.
412 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
413 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700414 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700415 &quot;location&quot;: { # The location for geotagged posts.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700416 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700417 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700418 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700419 &quot;name&quot;: &quot;A String&quot;, # Location name.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700420 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700421 },
422 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700423 &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 -0700424 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700425 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700426 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
427 &quot;pages&quot;: { # The container of pages in this blog.
428 &quot;totalItems&quot;: 42, # The count of pages in this blog.
429 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
430 },
431 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
432 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
433 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700434 },
435 ],
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700436 }</pre>
437</div>
438
439</body></html>