blob: 6ddad5624c977284b4fafd58107ee6b4e65c5b26 [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 Botb6971b02020-11-26 17:16:03 -0800107 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
108 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800109 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800110 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
111 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
112 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
113 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
114 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
115 &quot;locale&quot;: { # The locale this Blog is set to.
116 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
117 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
118 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
119 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800120 &quot;pages&quot;: { # The container of pages in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800121 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800122 &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 -0800123 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800125 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700127 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700128 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
129 &quot;A String&quot;,
130 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800131 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800132 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800133 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800134 &quot;images&quot;: [ # Display image for the Post.
135 {
136 &quot;url&quot;: &quot;A String&quot;,
137 },
138 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800139 &quot;location&quot;: { # The location for geotagged posts.
140 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
141 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
142 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
143 &quot;name&quot;: &quot;A String&quot;, # Location name.
144 },
145 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
146 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
147 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
148 &quot;author&quot;: { # The author of this Post.
149 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
150 &quot;image&quot;: { # The creator&#x27;s avatar.
151 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
152 },
153 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
154 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
155 },
156 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
157 &quot;replies&quot;: { # The container of comments on this Post.
158 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
159 &quot;items&quot;: [ # The List of Comments for this Post.
160 {
161 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
162 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
163 },
164 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
165 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
166 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
167 &quot;post&quot;: { # Data about the post containing this comment.
168 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
169 },
170 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
171 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
172 &quot;blog&quot;: { # Data about the blog containing this comment.
173 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
174 },
175 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
176 &quot;author&quot;: { # The author of this Comment.
177 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
178 &quot;image&quot;: { # The creator&#x27;s avatar.
179 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
180 },
181 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
182 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
183 },
184 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
185 },
186 ],
187 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
188 },
189 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
190 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
191 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
192 &quot;blog&quot;: { # Data about the blog containing this Post.
193 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
194 },
195 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
196 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
197 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Dan O'Mearadd494642020-05-01 07:42:23 -0700198 },
199 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800200 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
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 Botb6971b02020-11-26 17:16:03 -0800203 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
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 {
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800222 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700223 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
224 {
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800225 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
226 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800227 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800228 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
229 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
230 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
231 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
232 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
233 &quot;locale&quot;: { # The locale this Blog is set to.
234 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
235 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
236 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
237 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800238 &quot;pages&quot;: { # The container of pages in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800239 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800240 &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 -0800241 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700242 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800243 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700244 &quot;items&quot;: [ # The List of Posts for this Blog.
245 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700246 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
247 &quot;A String&quot;,
248 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800249 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800250 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800251 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800252 &quot;images&quot;: [ # Display image for the Post.
253 {
254 &quot;url&quot;: &quot;A String&quot;,
255 },
256 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800257 &quot;location&quot;: { # The location for geotagged posts.
258 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
259 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
260 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
261 &quot;name&quot;: &quot;A String&quot;, # Location name.
262 },
263 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
264 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
265 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
266 &quot;author&quot;: { # The author of this Post.
267 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
268 &quot;image&quot;: { # The creator&#x27;s avatar.
269 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
270 },
271 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
272 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
273 },
274 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
275 &quot;replies&quot;: { # The container of comments on this Post.
276 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
277 &quot;items&quot;: [ # The List of Comments for this Post.
278 {
279 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
280 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
281 },
282 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
283 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
284 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
285 &quot;post&quot;: { # Data about the post containing this comment.
286 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
287 },
288 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
289 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
290 &quot;blog&quot;: { # Data about the blog containing this comment.
291 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
292 },
293 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
294 &quot;author&quot;: { # The author of this Comment.
295 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
296 &quot;image&quot;: { # The creator&#x27;s avatar.
297 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
298 },
299 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
300 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
301 },
302 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
303 },
304 ],
305 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
306 },
307 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
308 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
309 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
310 &quot;blog&quot;: { # Data about the blog containing this Post.
311 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
312 },
313 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
314 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
315 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700316 },
317 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800318 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800319 },
320 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800321 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700322 },
323 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800324 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
325 {
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800326 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
327 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
328 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
329 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
330 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
331 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
332 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or READER).
333 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800334 &quot;blog&quot;: { # The Blog resource.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800335 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
336 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800337 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800338 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
339 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
340 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
341 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
342 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
343 &quot;locale&quot;: { # The locale this Blog is set to.
344 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
345 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
346 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
347 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800348 &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 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800352 &quot;posts&quot;: { # The container of posts in this blog.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800353 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800354 &quot;items&quot;: [ # The List of Posts for this Blog.
355 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800356 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
357 &quot;A String&quot;,
358 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800359 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800360 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800361 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800362 &quot;images&quot;: [ # Display image for the Post.
363 {
364 &quot;url&quot;: &quot;A String&quot;,
365 },
366 ],
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800367 &quot;location&quot;: { # The location for geotagged posts.
368 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
369 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
370 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
371 &quot;name&quot;: &quot;A String&quot;, # Location name.
372 },
373 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
374 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
375 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
376 &quot;author&quot;: { # The author of this Post.
377 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
378 &quot;image&quot;: { # The creator&#x27;s avatar.
379 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
380 },
381 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
382 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
383 },
384 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
385 &quot;replies&quot;: { # The container of comments on this Post.
386 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
387 &quot;items&quot;: [ # The List of Comments for this Post.
388 {
389 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
390 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
391 },
392 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
393 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
394 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
395 &quot;post&quot;: { # Data about the post containing this comment.
396 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
397 },
398 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
399 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
400 &quot;blog&quot;: { # Data about the blog containing this comment.
401 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
402 },
403 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
404 &quot;author&quot;: { # The author of this Comment.
405 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
406 &quot;image&quot;: { # The creator&#x27;s avatar.
407 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
408 },
409 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
410 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
411 },
412 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
413 },
414 ],
415 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
416 },
417 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
418 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
419 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
420 &quot;blog&quot;: { # Data about the blog containing this Post.
421 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
422 },
423 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
424 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
425 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800426 },
427 ],
428 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800429 },
430 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800431 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800432 },
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>