blob: 2d0ee48f6d1fd30c474435cfe225b08e7e1a0115 [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;pages&quot;: { # The container of pages in this blog.
100 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
101 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700102 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700103 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
104 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
105 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
106 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
107 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
108 &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 },
113 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
114 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
115 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
116 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
117 &quot;posts&quot;: { # The container of posts in this blog.
118 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700119 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700120 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
121 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
122 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
123 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
124 &quot;replies&quot;: { # The container of comments on this Post.
125 &quot;items&quot;: [ # The List of Comments for this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700126 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700127 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
128 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
129 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
130 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
131 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
132 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
133 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700134 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700135 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
136 &quot;author&quot;: { # The author of this Comment.
137 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
138 &quot;image&quot;: { # The creator&#x27;s avatar.
139 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700140 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700141 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
142 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dan O'Mearadd494642020-05-01 07:42:23 -0700143 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700144 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
145 &quot;blog&quot;: { # Data about the blog containing this comment.
146 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700147 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700148 &quot;post&quot;: { # Data about the post containing this comment.
149 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700150 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700151 },
152 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700153 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
154 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700155 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700156 &quot;author&quot;: { # The author of this Post.
157 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
158 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
159 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
160 &quot;image&quot;: { # The creator&#x27;s avatar.
161 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
162 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700163 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700164 &quot;location&quot;: { # The location for geotagged posts.
165 &quot;name&quot;: &quot;A String&quot;, # Location name.
166 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
167 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
168 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
169 },
170 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
171 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
172 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
173 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
174 &quot;A String&quot;,
175 ],
176 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
177 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
178 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
179 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
180 &quot;images&quot;: [ # Display image for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700181 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700182 &quot;url&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700183 },
184 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700185 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
186 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
187 &quot;blog&quot;: { # Data about the blog containing this Post.
188 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
189 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700190 },
191 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700192 &quot;totalItems&quot;: 42, # The count of posts in this blog.
193 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700194 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700195 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the 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;items&quot;: [ # The list of Blogs this user has Authorship or Admin rights over.
Dan O'Mearadd494642020-05-01 07:42:23 -0700215 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700216 &quot;pages&quot;: { # The container of pages in this blog.
217 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
218 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700219 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700220 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
221 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
222 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
223 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
224 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
225 &quot;locale&quot;: { # The locale this Blog is set to.
226 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
227 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
228 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
229 },
230 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
231 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
232 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
233 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
234 &quot;posts&quot;: { # The container of posts in this blog.
235 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700236 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700237 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
238 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
239 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
240 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
241 &quot;replies&quot;: { # The container of comments on this Post.
242 &quot;items&quot;: [ # The List of Comments for this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700243 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700244 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
245 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
246 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
247 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
248 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
249 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
250 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700251 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700252 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
253 &quot;author&quot;: { # The author of this Comment.
254 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
255 &quot;image&quot;: { # The creator&#x27;s avatar.
256 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700257 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700258 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
259 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dan O'Mearadd494642020-05-01 07:42:23 -0700260 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700261 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
262 &quot;blog&quot;: { # Data about the blog containing this comment.
263 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700264 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700265 &quot;post&quot;: { # Data about the post containing this comment.
266 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700267 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700268 },
269 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700270 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
271 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700272 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700273 &quot;author&quot;: { # The author of this Post.
274 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
275 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
276 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
277 &quot;image&quot;: { # The creator&#x27;s avatar.
278 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
279 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700280 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700281 &quot;location&quot;: { # The location for geotagged posts.
282 &quot;name&quot;: &quot;A String&quot;, # Location name.
283 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
284 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
285 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
286 },
287 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
288 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
289 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
290 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
291 &quot;A String&quot;,
292 ],
293 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
294 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
295 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
296 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
297 &quot;images&quot;: [ # Display image for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700298 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700299 &quot;url&quot;: &quot;A String&quot;,
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 API REST URL to fetch this resource from.
303 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
304 &quot;blog&quot;: { # Data about the blog containing this Post.
305 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
306 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700307 },
308 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700309 &quot;totalItems&quot;: 42, # The count of posts in this blog.
310 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700311 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700312 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700313 },
314 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700315 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogList.
316 &quot;blogUserInfos&quot;: [ # Admin level list of blog per-user information.
Dan O'Mearadd494642020-05-01 07:42:23 -0700317 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700318 &quot;blog_user_info&quot;: { # Information about a User for the Blog.
319 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogPerUserInfo.
320 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
321 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or
322 # READER).
323 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
324 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
325 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
326 },
327 &quot;blog&quot;: { # The Blog resource.
328 &quot;pages&quot;: { # The container of pages in this blog.
329 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
330 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700331 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700332 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
333 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
334 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
335 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
336 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
337 &quot;locale&quot;: { # The locale this Blog is set to.
338 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
339 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
340 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
341 },
342 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
343 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
344 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
345 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
346 &quot;posts&quot;: { # The container of posts in this blog.
347 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700348 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700349 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
350 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
351 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
352 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
353 &quot;replies&quot;: { # The container of comments on this Post.
354 &quot;items&quot;: [ # The List of Comments for this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700355 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700356 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
357 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
358 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
359 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
360 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
361 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
362 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700363 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700364 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
365 &quot;author&quot;: { # The author of this Comment.
366 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
367 &quot;image&quot;: { # The creator&#x27;s avatar.
368 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700369 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700370 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
371 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Dan O'Mearadd494642020-05-01 07:42:23 -0700372 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700373 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
374 &quot;blog&quot;: { # Data about the blog containing this comment.
375 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700376 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700377 &quot;post&quot;: { # Data about the post containing this comment.
378 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700379 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700380 },
381 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700382 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
383 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700384 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700385 &quot;author&quot;: { # The author of this Post.
386 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
387 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
388 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
389 &quot;image&quot;: { # The creator&#x27;s avatar.
390 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
391 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700392 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700393 &quot;location&quot;: { # The location for geotagged posts.
394 &quot;name&quot;: &quot;A String&quot;, # Location name.
395 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
396 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
397 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
398 },
399 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
400 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
401 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
402 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
403 &quot;A String&quot;,
404 ],
405 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
406 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
407 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
408 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
409 &quot;images&quot;: [ # Display image for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700410 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700411 &quot;url&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700412 },
413 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700414 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
415 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
416 &quot;blog&quot;: { # Data about the blog containing this Post.
417 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
418 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700419 },
420 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700421 &quot;totalItems&quot;: 42, # The count of posts in this blog.
422 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700423 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700424 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700425 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700426 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
Dan O'Mearadd494642020-05-01 07:42:23 -0700427 },
428 ],
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700429 }</pre>
430</div>
431
432</body></html>