blob: 2e8a9c172548a52091a332616e67f1306c0b02a4 [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">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#get">get(blogId, x__xgafv=None, maxPosts=None, view=None)</a></code></p>
79<p class="firstline">Gets a blog by id.</p>
John Asmuth614db982014-04-24 15:46:26 -040080<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#getByUrl">getByUrl(url, x__xgafv=None, view=None)</a></code></p>
82<p class="firstline">Gets a blog by url.</p>
John Asmuth614db982014-04-24 15:46:26 -040083<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#listByUser">listByUser(userId, status=None, fetchUserInfo=None, role=None, x__xgafv=None, view=None)</a></code></p>
85<p class="firstline">Lists blogs by user.</p>
John Asmuth614db982014-04-24 15:46:26 -040086<h3>Method Details</h3>
87<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070088 <code class="details" id="get">get(blogId, x__xgafv=None, maxPosts=None, view=None)</code>
89 <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)
93 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -040094 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -070095 1 - v1 error format
96 2 - v2 error format
97 maxPosts: integer, A parameter
98 view: string, A parameter
John Asmuth614db982014-04-24 15:46:26 -040099
100Returns:
101 An object of the form:
102
103 {
Craig Citro065b5302014-08-14 00:47:23 -0700104 "status": "A String", # The status of the blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700105 "updated": "A String", # RFC 3339 date-time when this blog was last updated.
John Asmuth614db982014-04-24 15:46:26 -0400106 "description": "A String", # The description of this blog. This is displayed underneath the title.
107 "locale": { # The locale this Blog is set to.
108 "country": "A String", # The country this blog's locale is set to.
109 "variant": "A String", # The language variant this blog is authored in.
110 "language": "A String", # The language this blog is authored in.
111 },
112 "posts": { # The container of posts in this blog.
113 "totalItems": 42, # The count of posts in this blog.
114 "items": [ # The List of Posts for this Blog.
115 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700116 "status": "A String", # Status of the post. Only set for admin-level requests.
117 "blog": { # Data about the blog containing this Post.
118 "id": "A String", # The identifier of the Blog that contains this Post.
119 },
120 "updated": "A String", # RFC 3339 date-time when this Post was last updated.
John Asmuth614db982014-04-24 15:46:26 -0400121 "titleLink": "A String", # The title link URL, similar to atom's related link.
122 "author": { # The author of this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700123 "url": "A String", # The URL of the creator's Profile page.
124 "image": { # The creator's avatar.
125 "url": "A String", # The creator's avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400126 },
127 "displayName": "A String", # The display name.
Dan O'Mearadd494642020-05-01 07:42:23 -0700128 "id": "A String", # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400129 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700130 "title": "A String", # The title of the Post.
John Asmuth614db982014-04-24 15:46:26 -0400131 "replies": { # The container of comments on this Post.
132 "totalItems": "A String", # The count of comments on this post.
133 "items": [ # The List of Comments for this Post.
134 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700135 "status": "A String", # The status of the comment (only populated for admin users).
John Asmuth614db982014-04-24 15:46:26 -0400136 "inReplyTo": { # Data about the comment this is in reply to.
137 "id": "A String", # The identified of the parent of this comment.
138 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700139 "kind": "A String", # The kind of this entry. Always blogger#comment.
John Asmuth614db982014-04-24 15:46:26 -0400140 "author": { # The author of this Comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700141 "url": "A String", # The URL of the creator's Profile page.
142 "image": { # The creator's avatar.
143 "url": "A String", # The creator's avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400144 },
145 "displayName": "A String", # The display name.
Dan O'Mearadd494642020-05-01 07:42:23 -0700146 "id": "A String", # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400147 },
148 "updated": "A String", # RFC 3339 date-time when this comment was last updated.
149 "blog": { # Data about the blog containing this comment.
150 "id": "A String", # The identifier of the blog containing this comment.
151 },
152 "published": "A String", # RFC 3339 date-time when this comment was published.
153 "post": { # Data about the post containing this comment.
154 "id": "A String", # The identifier of the post containing this comment.
155 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700156 "content": "A String", # The actual content of the comment. May include HTML markup.
John Asmuth614db982014-04-24 15:46:26 -0400157 "id": "A String", # The identifier for this resource.
158 "selfLink": "A String", # The API REST URL to fetch this resource from.
159 },
160 ],
161 "selfLink": "A String", # The URL of the comments on this post.
162 },
Craig Citro065b5302014-08-14 00:47:23 -0700163 "readerComments": "A String", # Comment control and display setting for readers of this post.
John Asmuth614db982014-04-24 15:46:26 -0400164 "labels": [ # The list of labels this Post was tagged with.
165 "A String",
166 ],
167 "customMetaData": "A String", # The JSON meta-data for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700168 "kind": "A String", # The kind of this entity. Always blogger#post.
169 "content": "A String", # The content of the Post. May contain HTML markup.
John Asmuth614db982014-04-24 15:46:26 -0400170 "url": "A String", # The URL where this Post is displayed.
Craig Citro065b5302014-08-14 00:47:23 -0700171 "etag": "A String", # Etag of the resource.
John Asmuth614db982014-04-24 15:46:26 -0400172 "location": { # The location for geotagged posts.
173 "lat": 3.14, # Location's latitude.
174 "lng": 3.14, # Location's longitude.
175 "span": "A String", # Location's viewport span. Can be used when rendering a map preview.
176 "name": "A String", # Location name.
177 },
178 "published": "A String", # RFC 3339 date-time when this Post was published.
179 "images": [ # Display image for the Post.
180 {
181 "url": "A String",
182 },
183 ],
John Asmuth614db982014-04-24 15:46:26 -0400184 "id": "A String", # The identifier of this Post.
185 "selfLink": "A String", # The API REST URL to fetch this resource from.
186 },
187 ],
188 "selfLink": "A String", # The URL of the container for posts in this blog.
189 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700190 "customMetaData": "A String", # The JSON custom meta-data for the Blog.
191 "kind": "A String", # The kind of this entry. Always blogger#blog.
192 "id": "A String", # The identifier for this resource.
193 "url": "A String", # The URL where this blog is published.
194 "published": "A String", # RFC 3339 date-time when this blog was published.
John Asmuth614db982014-04-24 15:46:26 -0400195 "pages": { # The container of pages in this blog.
196 "totalItems": 42, # The count of pages in this blog.
197 "selfLink": "A String", # The URL of the container for pages in this blog.
198 },
John Asmuth614db982014-04-24 15:46:26 -0400199 "selfLink": "A String", # The API REST URL to fetch this resource from.
200 "name": "A String", # The name of this blog. This is displayed as the title.
201 }</pre>
202</div>
203
204<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700205 <code class="details" id="getByUrl">getByUrl(url, x__xgafv=None, view=None)</code>
206 <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)
210 x__xgafv: string, V1 error format.
John Asmuth614db982014-04-24 15:46:26 -0400211 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700212 1 - v1 error format
213 2 - v2 error format
214 view: string, A parameter
John Asmuth614db982014-04-24 15:46:26 -0400215
216Returns:
217 An object of the form:
218
219 {
Craig Citro065b5302014-08-14 00:47:23 -0700220 "status": "A String", # The status of the blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700221 "updated": "A String", # RFC 3339 date-time when this blog was last updated.
John Asmuth614db982014-04-24 15:46:26 -0400222 "description": "A String", # The description of this blog. This is displayed underneath the title.
223 "locale": { # The locale this Blog is set to.
224 "country": "A String", # The country this blog's locale is set to.
225 "variant": "A String", # The language variant this blog is authored in.
226 "language": "A String", # The language this blog is authored in.
227 },
228 "posts": { # The container of posts in this blog.
229 "totalItems": 42, # The count of posts in this blog.
230 "items": [ # The List of Posts for this Blog.
231 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700232 "status": "A String", # Status of the post. Only set for admin-level requests.
233 "blog": { # Data about the blog containing this Post.
234 "id": "A String", # The identifier of the Blog that contains this Post.
235 },
236 "updated": "A String", # RFC 3339 date-time when this Post was last updated.
John Asmuth614db982014-04-24 15:46:26 -0400237 "titleLink": "A String", # The title link URL, similar to atom's related link.
238 "author": { # The author of this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700239 "url": "A String", # The URL of the creator's Profile page.
240 "image": { # The creator's avatar.
241 "url": "A String", # The creator's avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400242 },
243 "displayName": "A String", # The display name.
Dan O'Mearadd494642020-05-01 07:42:23 -0700244 "id": "A String", # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400245 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700246 "title": "A String", # The title of the Post.
John Asmuth614db982014-04-24 15:46:26 -0400247 "replies": { # The container of comments on this Post.
248 "totalItems": "A String", # The count of comments on this post.
249 "items": [ # The List of Comments for this Post.
250 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700251 "status": "A String", # The status of the comment (only populated for admin users).
John Asmuth614db982014-04-24 15:46:26 -0400252 "inReplyTo": { # Data about the comment this is in reply to.
253 "id": "A String", # The identified of the parent of this comment.
254 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700255 "kind": "A String", # The kind of this entry. Always blogger#comment.
John Asmuth614db982014-04-24 15:46:26 -0400256 "author": { # The author of this Comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700257 "url": "A String", # The URL of the creator's Profile page.
258 "image": { # The creator's avatar.
259 "url": "A String", # The creator's avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400260 },
261 "displayName": "A String", # The display name.
Dan O'Mearadd494642020-05-01 07:42:23 -0700262 "id": "A String", # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400263 },
264 "updated": "A String", # RFC 3339 date-time when this comment was last updated.
265 "blog": { # Data about the blog containing this comment.
266 "id": "A String", # The identifier of the blog containing this comment.
267 },
268 "published": "A String", # RFC 3339 date-time when this comment was published.
269 "post": { # Data about the post containing this comment.
270 "id": "A String", # The identifier of the post containing this comment.
271 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700272 "content": "A String", # The actual content of the comment. May include HTML markup.
John Asmuth614db982014-04-24 15:46:26 -0400273 "id": "A String", # The identifier for this resource.
274 "selfLink": "A String", # The API REST URL to fetch this resource from.
275 },
276 ],
277 "selfLink": "A String", # The URL of the comments on this post.
278 },
Craig Citro065b5302014-08-14 00:47:23 -0700279 "readerComments": "A String", # Comment control and display setting for readers of this post.
John Asmuth614db982014-04-24 15:46:26 -0400280 "labels": [ # The list of labels this Post was tagged with.
281 "A String",
282 ],
283 "customMetaData": "A String", # The JSON meta-data for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700284 "kind": "A String", # The kind of this entity. Always blogger#post.
285 "content": "A String", # The content of the Post. May contain HTML markup.
John Asmuth614db982014-04-24 15:46:26 -0400286 "url": "A String", # The URL where this Post is displayed.
Craig Citro065b5302014-08-14 00:47:23 -0700287 "etag": "A String", # Etag of the resource.
John Asmuth614db982014-04-24 15:46:26 -0400288 "location": { # The location for geotagged posts.
289 "lat": 3.14, # Location's latitude.
290 "lng": 3.14, # Location's longitude.
291 "span": "A String", # Location's viewport span. Can be used when rendering a map preview.
292 "name": "A String", # Location name.
293 },
294 "published": "A String", # RFC 3339 date-time when this Post was published.
295 "images": [ # Display image for the Post.
296 {
297 "url": "A String",
298 },
299 ],
John Asmuth614db982014-04-24 15:46:26 -0400300 "id": "A String", # The identifier of this Post.
301 "selfLink": "A String", # The API REST URL to fetch this resource from.
302 },
303 ],
304 "selfLink": "A String", # The URL of the container for posts in this blog.
305 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700306 "customMetaData": "A String", # The JSON custom meta-data for the Blog.
307 "kind": "A String", # The kind of this entry. Always blogger#blog.
308 "id": "A String", # The identifier for this resource.
309 "url": "A String", # The URL where this blog is published.
310 "published": "A String", # RFC 3339 date-time when this blog was published.
John Asmuth614db982014-04-24 15:46:26 -0400311 "pages": { # The container of pages in this blog.
312 "totalItems": 42, # The count of pages in this blog.
313 "selfLink": "A String", # The URL of the container for pages in this blog.
314 },
John Asmuth614db982014-04-24 15:46:26 -0400315 "selfLink": "A String", # The API REST URL to fetch this resource from.
316 "name": "A String", # The name of this blog. This is displayed as the title.
317 }</pre>
318</div>
319
320<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700321 <code class="details" id="listByUser">listByUser(userId, status=None, fetchUserInfo=None, role=None, x__xgafv=None, view=None)</code>
322 <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)
326 status: string, Default value of status is LIVE. (repeated)
327 fetchUserInfo: boolean, A parameter
328 role: string, A parameter (repeated)
329 x__xgafv: string, V1 error format.
Craig Citro065b5302014-08-14 00:47:23 -0700330 Allowed values
Dan O'Mearadd494642020-05-01 07:42:23 -0700331 1 - v1 error format
332 2 - v2 error format
333 view: string, A parameter
John Asmuth614db982014-04-24 15:46:26 -0400334
335Returns:
336 An object of the form:
337
338 {
339 "items": [ # The list of Blogs this user has Authorship or Admin rights over.
340 {
Craig Citro065b5302014-08-14 00:47:23 -0700341 "status": "A String", # The status of the blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700342 "updated": "A String", # RFC 3339 date-time when this blog was last updated.
John Asmuth614db982014-04-24 15:46:26 -0400343 "description": "A String", # The description of this blog. This is displayed underneath the title.
344 "locale": { # The locale this Blog is set to.
345 "country": "A String", # The country this blog's locale is set to.
346 "variant": "A String", # The language variant this blog is authored in.
347 "language": "A String", # The language this blog is authored in.
348 },
349 "posts": { # The container of posts in this blog.
350 "totalItems": 42, # The count of posts in this blog.
351 "items": [ # The List of Posts for this Blog.
352 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700353 "status": "A String", # Status of the post. Only set for admin-level requests.
354 "blog": { # Data about the blog containing this Post.
355 "id": "A String", # The identifier of the Blog that contains this Post.
356 },
357 "updated": "A String", # RFC 3339 date-time when this Post was last updated.
John Asmuth614db982014-04-24 15:46:26 -0400358 "titleLink": "A String", # The title link URL, similar to atom's related link.
359 "author": { # The author of this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700360 "url": "A String", # The URL of the creator's Profile page.
361 "image": { # The creator's avatar.
362 "url": "A String", # The creator's avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400363 },
364 "displayName": "A String", # The display name.
Dan O'Mearadd494642020-05-01 07:42:23 -0700365 "id": "A String", # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400366 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700367 "title": "A String", # The title of the Post.
John Asmuth614db982014-04-24 15:46:26 -0400368 "replies": { # The container of comments on this Post.
369 "totalItems": "A String", # The count of comments on this post.
370 "items": [ # The List of Comments for this Post.
371 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700372 "status": "A String", # The status of the comment (only populated for admin users).
John Asmuth614db982014-04-24 15:46:26 -0400373 "inReplyTo": { # Data about the comment this is in reply to.
374 "id": "A String", # The identified of the parent of this comment.
375 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700376 "kind": "A String", # The kind of this entry. Always blogger#comment.
John Asmuth614db982014-04-24 15:46:26 -0400377 "author": { # The author of this Comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700378 "url": "A String", # The URL of the creator's Profile page.
379 "image": { # The creator's avatar.
380 "url": "A String", # The creator's avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400381 },
382 "displayName": "A String", # The display name.
Dan O'Mearadd494642020-05-01 07:42:23 -0700383 "id": "A String", # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400384 },
385 "updated": "A String", # RFC 3339 date-time when this comment was last updated.
386 "blog": { # Data about the blog containing this comment.
387 "id": "A String", # The identifier of the blog containing this comment.
388 },
389 "published": "A String", # RFC 3339 date-time when this comment was published.
390 "post": { # Data about the post containing this comment.
391 "id": "A String", # The identifier of the post containing this comment.
392 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700393 "content": "A String", # The actual content of the comment. May include HTML markup.
John Asmuth614db982014-04-24 15:46:26 -0400394 "id": "A String", # The identifier for this resource.
395 "selfLink": "A String", # The API REST URL to fetch this resource from.
396 },
397 ],
398 "selfLink": "A String", # The URL of the comments on this post.
399 },
Craig Citro065b5302014-08-14 00:47:23 -0700400 "readerComments": "A String", # Comment control and display setting for readers of this post.
John Asmuth614db982014-04-24 15:46:26 -0400401 "labels": [ # The list of labels this Post was tagged with.
402 "A String",
403 ],
404 "customMetaData": "A String", # The JSON meta-data for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700405 "kind": "A String", # The kind of this entity. Always blogger#post.
406 "content": "A String", # The content of the Post. May contain HTML markup.
John Asmuth614db982014-04-24 15:46:26 -0400407 "url": "A String", # The URL where this Post is displayed.
Craig Citro065b5302014-08-14 00:47:23 -0700408 "etag": "A String", # Etag of the resource.
John Asmuth614db982014-04-24 15:46:26 -0400409 "location": { # The location for geotagged posts.
410 "lat": 3.14, # Location's latitude.
411 "lng": 3.14, # Location's longitude.
412 "span": "A String", # Location's viewport span. Can be used when rendering a map preview.
413 "name": "A String", # Location name.
414 },
415 "published": "A String", # RFC 3339 date-time when this Post was published.
416 "images": [ # Display image for the Post.
417 {
418 "url": "A String",
419 },
420 ],
John Asmuth614db982014-04-24 15:46:26 -0400421 "id": "A String", # The identifier of this Post.
422 "selfLink": "A String", # The API REST URL to fetch this resource from.
423 },
424 ],
425 "selfLink": "A String", # The URL of the container for posts in this blog.
426 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700427 "customMetaData": "A String", # The JSON custom meta-data for the Blog.
428 "kind": "A String", # The kind of this entry. Always blogger#blog.
429 "id": "A String", # The identifier for this resource.
430 "url": "A String", # The URL where this blog is published.
431 "published": "A String", # RFC 3339 date-time when this blog was published.
John Asmuth614db982014-04-24 15:46:26 -0400432 "pages": { # The container of pages in this blog.
433 "totalItems": 42, # The count of pages in this blog.
434 "selfLink": "A String", # The URL of the container for pages in this blog.
435 },
John Asmuth614db982014-04-24 15:46:26 -0400436 "selfLink": "A String", # The API REST URL to fetch this resource from.
437 "name": "A String", # The name of this blog. This is displayed as the title.
438 },
439 ],
Dan O'Mearadd494642020-05-01 07:42:23 -0700440 "kind": "A String", # The kind of this entity. Always blogger#blogList.
441 "blogUserInfos": [ # Admin level list of blog per-user information.
John Asmuth614db982014-04-24 15:46:26 -0400442 {
443 "blog": { # The Blog resource.
Craig Citro065b5302014-08-14 00:47:23 -0700444 "status": "A String", # The status of the blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700445 "updated": "A String", # RFC 3339 date-time when this blog was last updated.
John Asmuth614db982014-04-24 15:46:26 -0400446 "description": "A String", # The description of this blog. This is displayed underneath the title.
447 "locale": { # The locale this Blog is set to.
448 "country": "A String", # The country this blog's locale is set to.
449 "variant": "A String", # The language variant this blog is authored in.
450 "language": "A String", # The language this blog is authored in.
451 },
452 "posts": { # The container of posts in this blog.
453 "totalItems": 42, # The count of posts in this blog.
454 "items": [ # The List of Posts for this Blog.
455 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700456 "status": "A String", # Status of the post. Only set for admin-level requests.
457 "blog": { # Data about the blog containing this Post.
458 "id": "A String", # The identifier of the Blog that contains this Post.
459 },
460 "updated": "A String", # RFC 3339 date-time when this Post was last updated.
John Asmuth614db982014-04-24 15:46:26 -0400461 "titleLink": "A String", # The title link URL, similar to atom's related link.
462 "author": { # The author of this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700463 "url": "A String", # The URL of the creator's Profile page.
464 "image": { # The creator's avatar.
465 "url": "A String", # The creator's avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400466 },
467 "displayName": "A String", # The display name.
Dan O'Mearadd494642020-05-01 07:42:23 -0700468 "id": "A String", # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400469 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700470 "title": "A String", # The title of the Post.
John Asmuth614db982014-04-24 15:46:26 -0400471 "replies": { # The container of comments on this Post.
472 "totalItems": "A String", # The count of comments on this post.
473 "items": [ # The List of Comments for this Post.
474 {
Dan O'Mearadd494642020-05-01 07:42:23 -0700475 "status": "A String", # The status of the comment (only populated for admin users).
John Asmuth614db982014-04-24 15:46:26 -0400476 "inReplyTo": { # Data about the comment this is in reply to.
477 "id": "A String", # The identified of the parent of this comment.
478 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700479 "kind": "A String", # The kind of this entry. Always blogger#comment.
John Asmuth614db982014-04-24 15:46:26 -0400480 "author": { # The author of this Comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700481 "url": "A String", # The URL of the creator's Profile page.
482 "image": { # The creator's avatar.
483 "url": "A String", # The creator's avatar URL.
John Asmuth614db982014-04-24 15:46:26 -0400484 },
485 "displayName": "A String", # The display name.
Dan O'Mearadd494642020-05-01 07:42:23 -0700486 "id": "A String", # The identifier of the creator.
John Asmuth614db982014-04-24 15:46:26 -0400487 },
488 "updated": "A String", # RFC 3339 date-time when this comment was last updated.
489 "blog": { # Data about the blog containing this comment.
490 "id": "A String", # The identifier of the blog containing this comment.
491 },
492 "published": "A String", # RFC 3339 date-time when this comment was published.
493 "post": { # Data about the post containing this comment.
494 "id": "A String", # The identifier of the post containing this comment.
495 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700496 "content": "A String", # The actual content of the comment. May include HTML markup.
John Asmuth614db982014-04-24 15:46:26 -0400497 "id": "A String", # The identifier for this resource.
498 "selfLink": "A String", # The API REST URL to fetch this resource from.
499 },
500 ],
501 "selfLink": "A String", # The URL of the comments on this post.
502 },
Craig Citro065b5302014-08-14 00:47:23 -0700503 "readerComments": "A String", # Comment control and display setting for readers of this post.
John Asmuth614db982014-04-24 15:46:26 -0400504 "labels": [ # The list of labels this Post was tagged with.
505 "A String",
506 ],
507 "customMetaData": "A String", # The JSON meta-data for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700508 "kind": "A String", # The kind of this entity. Always blogger#post.
509 "content": "A String", # The content of the Post. May contain HTML markup.
John Asmuth614db982014-04-24 15:46:26 -0400510 "url": "A String", # The URL where this Post is displayed.
Craig Citro065b5302014-08-14 00:47:23 -0700511 "etag": "A String", # Etag of the resource.
John Asmuth614db982014-04-24 15:46:26 -0400512 "location": { # The location for geotagged posts.
513 "lat": 3.14, # Location's latitude.
514 "lng": 3.14, # Location's longitude.
515 "span": "A String", # Location's viewport span. Can be used when rendering a map preview.
516 "name": "A String", # Location name.
517 },
518 "published": "A String", # RFC 3339 date-time when this Post was published.
519 "images": [ # Display image for the Post.
520 {
521 "url": "A String",
522 },
523 ],
John Asmuth614db982014-04-24 15:46:26 -0400524 "id": "A String", # The identifier of this Post.
525 "selfLink": "A String", # The API REST URL to fetch this resource from.
526 },
527 ],
528 "selfLink": "A String", # The URL of the container for posts in this blog.
529 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700530 "customMetaData": "A String", # The JSON custom meta-data for the Blog.
531 "kind": "A String", # The kind of this entry. Always blogger#blog.
532 "id": "A String", # The identifier for this resource.
533 "url": "A String", # The URL where this blog is published.
534 "published": "A String", # RFC 3339 date-time when this blog was published.
John Asmuth614db982014-04-24 15:46:26 -0400535 "pages": { # The container of pages in this blog.
536 "totalItems": 42, # The count of pages in this blog.
537 "selfLink": "A String", # The URL of the container for pages in this blog.
538 },
John Asmuth614db982014-04-24 15:46:26 -0400539 "selfLink": "A String", # The API REST URL to fetch this resource from.
540 "name": "A String", # The name of this blog. This is displayed as the title.
541 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700542 "kind": "A String", # The kind of this entity. Always blogger#blogUserInfo.
John Asmuth614db982014-04-24 15:46:26 -0400543 "blog_user_info": { # Information about a User for the Blog.
544 "hasAdminAccess": True or False, # True if the user has Admin level access to the blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700545 "kind": "A String", # The kind of this entity. Always blogger#blogPerUserInfo.
546 "userId": "A String", # ID of the User.
547 "role": "A String", # Access permissions that the user has for the blog (ADMIN, AUTHOR, or
548 # READER).
549 "photosAlbumKey": "A String", # The Photo Album Key for the user when adding photos to the blog.
550 "blogId": "A String", # ID of the Blog resource.
John Asmuth614db982014-04-24 15:46:26 -0400551 },
552 },
553 ],
554 }</pre>
555</div>
556
557</body></html>