blob: b0ad8253341afdaee3b3bf1d30ec16653a051db9 [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">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#get">get(blogId, x__xgafv=None)</a></code></p>
79<p class="firstline">Gets a blog by id.</p>
80<p class="toc_element">
81 <code><a href="#list">list(userId, x__xgafv=None)</a></code></p>
82<p class="firstline">Lists blogs by user id, possibly filtered.</p>
Sai Cheemalapatidf613972016-10-21 13:59:49 -070083<h3>Method Details</h3>
84<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070085 <code class="details" id="get">get(blogId, x__xgafv=None)</code>
86 <pre>Gets a blog by id.
Sai Cheemalapatidf613972016-10-21 13:59:49 -070087
88Args:
Dan O'Mearadd494642020-05-01 07:42:23 -070089 blogId: string, A parameter (required)
90 x__xgafv: string, V1 error format.
91 Allowed values
92 1 - v1 error format
93 2 - v2 error format
Sai Cheemalapatidf613972016-10-21 13:59:49 -070094
95Returns:
96 An object of the form:
97
98 {
Bu Sun Kim65020912020-05-20 12:08:20 -070099 &quot;posts&quot;: { # The container of posts in this blog.
100 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700101 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700102 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
103 &quot;A String&quot;,
104 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700105 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700106 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700107 &quot;replies&quot;: { # The container of comments on this Post.
108 &quot;items&quot;: [ # The List of Comments for this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700109 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700110 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700111 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700112 &quot;image&quot;: { # The creator&#x27;s avatar.
113 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700114 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700115 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700116 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dan O'Mearadd494642020-05-01 07:42:23 -0700117 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700118 &quot;blog&quot;: { # Data about the blog containing this comment.
119 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700120 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700121 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
122 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
123 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
124 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
125 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
126 },
127 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
128 &quot;post&quot;: { # Data about the post containing this comment.
129 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
130 },
131 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
132 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
133 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Dan O'Mearadd494642020-05-01 07:42:23 -0700134 },
135 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700136 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700137 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700138 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700139 &quot;location&quot;: { # The location for geotagged posts.
140 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
141 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
142 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
143 &quot;name&quot;: &quot;A String&quot;, # Location name.
144 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700145 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700146 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
147 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
Bu Sun Kim65020912020-05-20 12:08:20 -0700148 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700149 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
150 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
151 &quot;blog&quot;: { # Data about the blog containing this Post.
152 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
153 },
154 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
155 &quot;author&quot;: { # The author of this Post.
156 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
157 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
158 &quot;image&quot;: { # The creator&#x27;s avatar.
159 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
160 },
161 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
162 },
163 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700164 &quot;images&quot;: [ # Display image for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700165 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700166 &quot;url&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700167 },
168 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700169 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
170 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
171 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
Dan O'Mearadd494642020-05-01 07:42:23 -0700172 },
173 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700174 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700175 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700176 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700177 &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 -0700178 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
179 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700180 &quot;locale&quot;: { # The locale this Blog is set to.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700181 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
182 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700183 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700184 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700185 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
186 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
187 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
188 &quot;pages&quot;: { # The container of pages in this blog.
189 &quot;totalItems&quot;: 42, # The count of pages in this blog.
190 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
191 },
192 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
193 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
194 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700195 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700196 }</pre>
197</div>
198
199<div class="method">
200 <code class="details" id="list">list(userId, x__xgafv=None)</code>
201 <pre>Lists blogs by user id, possibly filtered.
202
203Args:
204 userId: string, A parameter (required)
205 x__xgafv: string, V1 error format.
206 Allowed values
207 1 - v1 error format
208 2 - v2 error format
209
210Returns:
211 An object of the form:
212
213 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700214 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
Dan O'Mearadd494642020-05-01 07:42:23 -0700215 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700216 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
Bu Sun Kim65020912020-05-20 12:08:20 -0700217 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700218 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or
219 # READER).
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700220 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
221 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700222 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700223 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
224 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
Bu Sun Kim65020912020-05-20 12:08:20 -0700225 },
226 &quot;blog&quot;: { # The Blog resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700227 &quot;posts&quot;: { # The container of posts in this blog.
228 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700229 {
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700230 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
231 &quot;A String&quot;,
232 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700233 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700234 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700235 &quot;replies&quot;: { # The container of comments on this Post.
236 &quot;items&quot;: [ # The List of Comments for this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700237 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700238 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700239 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim65020912020-05-20 12:08:20 -0700240 &quot;image&quot;: { # The creator&#x27;s avatar.
241 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700242 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700243 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700244 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dan O'Mearadd494642020-05-01 07:42:23 -0700245 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700246 &quot;blog&quot;: { # Data about the blog containing this comment.
247 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700248 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700249 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
250 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
251 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
252 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
253 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
254 },
255 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
256 &quot;post&quot;: { # Data about the post containing this comment.
257 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
258 },
259 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
260 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
261 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
Dan O'Mearadd494642020-05-01 07:42:23 -0700262 },
263 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700264 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700265 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700266 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700267 &quot;location&quot;: { # The location for geotagged posts.
268 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
269 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
270 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
271 &quot;name&quot;: &quot;A String&quot;, # Location name.
272 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700273 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700274 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
275 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
Bu Sun Kim65020912020-05-20 12:08:20 -0700276 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700277 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
278 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
279 &quot;blog&quot;: { # Data about the blog containing this Post.
280 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
281 },
282 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
283 &quot;author&quot;: { # The author of this Post.
284 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
285 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
286 &quot;image&quot;: { # The creator&#x27;s avatar.
287 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
288 },
289 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
290 },
291 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
Bu Sun Kim65020912020-05-20 12:08:20 -0700292 &quot;images&quot;: [ # Display image for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700293 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700294 &quot;url&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700295 },
296 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700297 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
298 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
299 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
Dan O'Mearadd494642020-05-01 07:42:23 -0700300 },
301 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700302 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700303 &quot;totalItems&quot;: 42, # The count of posts in this blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700304 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700305 &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 -0700306 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
307 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700308 &quot;locale&quot;: { # The locale this Blog is set to.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700309 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
310 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700311 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700312 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700313 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
314 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
315 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
316 &quot;pages&quot;: { # The container of pages in this blog.
317 &quot;totalItems&quot;: 42, # The count of pages in this blog.
318 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
319 },
320 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
321 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
322 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700323 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700324 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700325 },
326 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700327 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
328 &quot;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
329 {
330 &quot;posts&quot;: { # The container of posts in this blog.
331 &quot;items&quot;: [ # The List of Posts for this Blog.
332 {
333 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
334 &quot;A String&quot;,
335 ],
336 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
337 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
338 &quot;replies&quot;: { # The container of comments on this Post.
339 &quot;items&quot;: [ # The List of Comments for this Post.
340 {
341 &quot;author&quot;: { # The author of this Comment.
342 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
343 &quot;image&quot;: { # The creator&#x27;s avatar.
344 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
345 },
346 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
347 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
348 },
349 &quot;blog&quot;: { # Data about the blog containing this comment.
350 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
351 },
352 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
353 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
354 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
355 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
356 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
357 },
358 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
359 &quot;post&quot;: { # Data about the post containing this comment.
360 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
361 },
362 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
363 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
364 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
365 },
366 ],
367 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
368 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
369 },
370 &quot;location&quot;: { # The location for geotagged posts.
371 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
372 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
373 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
374 &quot;name&quot;: &quot;A String&quot;, # Location name.
375 },
376 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
377 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
378 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
379 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
380 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
381 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
382 &quot;blog&quot;: { # Data about the blog containing this Post.
383 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
384 },
385 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
386 &quot;author&quot;: { # The author of this Post.
387 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
388 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
389 &quot;image&quot;: { # The creator&#x27;s avatar.
390 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
391 },
392 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
393 },
394 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
395 &quot;images&quot;: [ # Display image for the Post.
396 {
397 &quot;url&quot;: &quot;A String&quot;,
398 },
399 ],
400 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
401 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
402 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
403 },
404 ],
405 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
406 &quot;totalItems&quot;: 42, # The count of posts in this blog.
407 },
408 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
409 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
410 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
411 &quot;locale&quot;: { # The locale this Blog is set to.
412 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
413 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
414 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
415 },
416 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
417 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
418 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
419 &quot;pages&quot;: { # The container of pages in this blog.
420 &quot;totalItems&quot;: 42, # The count of pages in this blog.
421 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
422 },
423 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
424 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
425 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
426 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
427 },
428 ],
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700429 }</pre>
430</div>
431
432</body></html>