blob: 8bc0d5083a71c0cd9a0d805a53beacf706ba88ff [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 Kim4ed7d3f2020-05-27 12:20:54 -070099 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
100 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
101 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
102 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700103 &quot;pages&quot;: { # The container of pages in this blog.
104 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
105 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700106 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700107 &quot;posts&quot;: { # The container of posts in this blog.
108 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700109 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700110 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
111 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
112 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700113 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700114 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
115 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
116 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
117 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700118 &quot;replies&quot;: { # The container of comments on this Post.
119 &quot;items&quot;: [ # The List of Comments for this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700120 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700121 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700122 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
123 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700124 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700125 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
126 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
127 &quot;post&quot;: { # Data about the post containing this comment.
128 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
129 },
130 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
131 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
132 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kim65020912020-05-20 12:08:20 -0700133 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
134 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700135 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kim65020912020-05-20 12:08:20 -0700136 &quot;image&quot;: { # The creator&#x27;s avatar.
137 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700138 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700139 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700140 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Dan O'Mearadd494642020-05-01 07:42:23 -0700141 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700142 &quot;blog&quot;: { # Data about the blog containing this comment.
143 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700144 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700145 },
146 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700147 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700148 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700149 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700150 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700151 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kim65020912020-05-20 12:08:20 -0700152 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
153 &quot;A String&quot;,
154 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700155 &quot;images&quot;: [ # Display image for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700156 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700157 &quot;url&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700158 },
159 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700160 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
161 &quot;location&quot;: { # The location for geotagged posts.
162 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
163 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
164 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
165 &quot;name&quot;: &quot;A String&quot;, # Location name.
166 },
167 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
168 &quot;author&quot;: { # The author of this Post.
169 &quot;image&quot;: { # The creator&#x27;s avatar.
170 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
171 },
172 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
173 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
174 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
175 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700176 &quot;blog&quot;: { # Data about the blog containing this Post.
177 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
178 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700179 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700180 },
181 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700182 &quot;totalItems&quot;: 42, # The count of posts in this blog.
183 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for posts in this blog.
Sai Cheemalapatidf613972016-10-21 13:59:49 -0700184 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700185 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
186 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
187 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
188 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
189 &quot;locale&quot;: { # The locale this Blog is set to.
190 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
191 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
192 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
193 },
194 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
195 &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;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 Kim4ed7d3f2020-05-27 12:20:54 -0700216 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
217 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
218 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
219 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700220 &quot;pages&quot;: { # The container of pages in this blog.
221 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
222 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700223 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700224 &quot;posts&quot;: { # The container of posts in this blog.
225 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700226 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700227 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
228 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
229 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700230 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700231 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
232 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
233 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
234 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#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;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700239 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
240 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700241 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700242 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
243 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
244 &quot;post&quot;: { # Data about the post containing this comment.
245 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
246 },
247 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
248 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
249 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kim65020912020-05-20 12:08:20 -0700250 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
251 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700252 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kim65020912020-05-20 12:08:20 -0700253 &quot;image&quot;: { # The creator&#x27;s avatar.
254 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700255 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700256 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700257 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Dan O'Mearadd494642020-05-01 07:42:23 -0700258 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700259 &quot;blog&quot;: { # Data about the blog containing this comment.
260 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700261 },
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 Kim4ed7d3f2020-05-27 12:20:54 -0700267 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700268 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kim65020912020-05-20 12:08:20 -0700269 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
270 &quot;A String&quot;,
271 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700272 &quot;images&quot;: [ # Display image for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700273 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700274 &quot;url&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700275 },
276 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700277 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
278 &quot;location&quot;: { # The location for geotagged posts.
279 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
280 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
281 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
282 &quot;name&quot;: &quot;A String&quot;, # Location name.
283 },
284 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
285 &quot;author&quot;: { # The author of this Post.
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;id&quot;: &quot;A String&quot;, # The identifier of the creator.
290 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
291 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
292 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700293 &quot;blog&quot;: { # Data about the blog containing this Post.
294 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
295 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700296 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700297 },
298 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700299 &quot;totalItems&quot;: 42, # The count of posts in this blog.
300 &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 -0700301 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700302 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
303 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
304 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
305 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
306 &quot;locale&quot;: { # The locale this Blog is set to.
307 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
308 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
309 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
310 },
311 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
312 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#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.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700320 &quot;hasAdminAccess&quot;: True or False, # True if the user has Admin level access to the blog.
321 &quot;userId&quot;: &quot;A String&quot;, # ID of the User.
Bu Sun Kim65020912020-05-20 12:08:20 -0700322 &quot;blogId&quot;: &quot;A String&quot;, # ID of the Blog resource.
323 &quot;role&quot;: &quot;A String&quot;, # Access permissions that the user has for the blog (ADMIN, AUTHOR, or
324 # READER).
Bu Sun Kim65020912020-05-20 12:08:20 -0700325 &quot;photosAlbumKey&quot;: &quot;A String&quot;, # The Photo Album Key for the user when adding photos to the blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700326 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700327 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#blogUserInfo.
Bu Sun Kim65020912020-05-20 12:08:20 -0700328 &quot;blog&quot;: { # The Blog resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700329 &quot;url&quot;: &quot;A String&quot;, # The URL where this blog is published.
330 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
331 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was published.
332 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON custom meta-data for the Blog.
Bu Sun Kim65020912020-05-20 12:08:20 -0700333 &quot;pages&quot;: { # The container of pages in this blog.
334 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the container for pages in this blog.
335 &quot;totalItems&quot;: 42, # The count of pages in this blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700336 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700337 &quot;posts&quot;: { # The container of posts in this blog.
338 &quot;items&quot;: [ # The List of Posts for this Blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700339 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700340 &quot;content&quot;: &quot;A String&quot;, # The content of the Post. May contain HTML markup.
341 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
342 &quot;title&quot;: &quot;A String&quot;, # The title of the Post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700343 &quot;customMetaData&quot;: &quot;A String&quot;, # The JSON meta-data for the Post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700344 &quot;readerComments&quot;: &quot;A String&quot;, # Comment control and display setting for readers of this post.
345 &quot;url&quot;: &quot;A String&quot;, # The URL where this Post is displayed.
346 &quot;status&quot;: &quot;A String&quot;, # Status of the post. Only set for admin-level requests.
347 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entity. Always blogger#post.
Bu Sun Kim65020912020-05-20 12:08:20 -0700348 &quot;replies&quot;: { # The container of comments on this Post.
349 &quot;items&quot;: [ # The List of Comments for this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700350 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700351 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
Bu Sun Kim65020912020-05-20 12:08:20 -0700352 &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
353 &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700354 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700355 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
356 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
357 &quot;post&quot;: { # Data about the post containing this comment.
358 &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
359 },
360 &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
361 &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
362 &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
Bu Sun Kim65020912020-05-20 12:08:20 -0700363 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
364 &quot;author&quot;: { # The author of this Comment.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700365 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
Bu Sun Kim65020912020-05-20 12:08:20 -0700366 &quot;image&quot;: { # The creator&#x27;s avatar.
367 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
Dan O'Mearadd494642020-05-01 07:42:23 -0700368 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700369 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700370 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
Dan O'Mearadd494642020-05-01 07:42:23 -0700371 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700372 &quot;blog&quot;: { # Data about the blog containing this comment.
373 &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
Dan O'Mearadd494642020-05-01 07:42:23 -0700374 },
Dan O'Mearadd494642020-05-01 07:42:23 -0700375 },
376 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700377 &quot;totalItems&quot;: &quot;A String&quot;, # The count of comments on this post.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700378 &quot;selfLink&quot;: &quot;A String&quot;, # The URL of the comments on this post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700379 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700380 &quot;etag&quot;: &quot;A String&quot;, # Etag of the resource.
Bu Sun Kim65020912020-05-20 12:08:20 -0700381 &quot;titleLink&quot;: &quot;A String&quot;, # The title link URL, similar to atom&#x27;s related link.
Bu Sun Kim65020912020-05-20 12:08:20 -0700382 &quot;labels&quot;: [ # The list of labels this Post was tagged with.
383 &quot;A String&quot;,
384 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700385 &quot;images&quot;: [ # Display image for the Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700386 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700387 &quot;url&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700388 },
389 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700390 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was last updated.
391 &quot;location&quot;: { # The location for geotagged posts.
392 &quot;span&quot;: &quot;A String&quot;, # Location&#x27;s viewport span. Can be used when rendering a map preview.
393 &quot;lat&quot;: 3.14, # Location&#x27;s latitude.
394 &quot;lng&quot;: 3.14, # Location&#x27;s longitude.
395 &quot;name&quot;: &quot;A String&quot;, # Location name.
396 },
397 &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this Post was published.
398 &quot;author&quot;: { # The author of this Post.
399 &quot;image&quot;: { # The creator&#x27;s avatar.
400 &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
401 },
402 &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
403 &quot;displayName&quot;: &quot;A String&quot;, # The display name.
404 &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
405 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700406 &quot;blog&quot;: { # Data about the blog containing this Post.
407 &quot;id&quot;: &quot;A String&quot;, # The identifier of the Blog that contains this Post.
408 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700409 &quot;id&quot;: &quot;A String&quot;, # The identifier of this Post.
Dan O'Mearadd494642020-05-01 07:42:23 -0700410 },
411 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700412 &quot;totalItems&quot;: 42, # The count of posts in this blog.
413 &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 -0700414 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700415 &quot;description&quot;: &quot;A String&quot;, # The description of this blog. This is displayed underneath the title.
416 &quot;name&quot;: &quot;A String&quot;, # The name of this blog. This is displayed as the title.
417 &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this blog was last updated.
418 &quot;status&quot;: &quot;A String&quot;, # The status of the blog.
419 &quot;locale&quot;: { # The locale this Blog is set to.
420 &quot;variant&quot;: &quot;A String&quot;, # The language variant this blog is authored in.
421 &quot;language&quot;: &quot;A String&quot;, # The language this blog is authored in.
422 &quot;country&quot;: &quot;A String&quot;, # The country this blog&#x27;s locale is set to.
423 },
424 &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
425 &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#blog.
Dan O'Mearadd494642020-05-01 07:42:23 -0700426 },
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>