Sai Cheemalapati | df61397 | 2016-10-21 13:59:49 -0700 | [diff] [blame] | 1 | <html><body> |
| 2 | <style> |
| 3 | |
| 4 | body, 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 | |
| 15 | body { |
| 16 | font-size: 13px; |
| 17 | padding: 1em; |
| 18 | } |
| 19 | |
| 20 | h1 { |
| 21 | font-size: 26px; |
| 22 | margin-bottom: 1em; |
| 23 | } |
| 24 | |
| 25 | h2 { |
| 26 | font-size: 24px; |
| 27 | margin-bottom: 1em; |
| 28 | } |
| 29 | |
| 30 | h3 { |
| 31 | font-size: 20px; |
| 32 | margin-bottom: 1em; |
| 33 | margin-top: 1em; |
| 34 | } |
| 35 | |
| 36 | pre, code { |
| 37 | line-height: 1.5; |
| 38 | font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; |
| 39 | } |
| 40 | |
| 41 | pre { |
| 42 | margin-top: 0.5em; |
| 43 | } |
| 44 | |
| 45 | h1, h2, h3, p { |
| 46 | font-family: Arial, sans serif; |
| 47 | } |
| 48 | |
| 49 | h1, 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'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 75 | <h1><a href="blogger_v2.html">Blogger API v3</a> . <a href="blogger_v2.blogs.html">blogs</a></h1> |
Sai Cheemalapati | df61397 | 2016-10-21 13:59:49 -0700 | [diff] [blame] | 76 | <h2>Instance Methods</h2> |
| 77 | <p class="toc_element"> |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 78 | <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 Cheemalapati | df61397 | 2016-10-21 13:59:49 -0700 | [diff] [blame] | 83 | <h3>Method Details</h3> |
| 84 | <div class="method"> |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 85 | <code class="details" id="get">get(blogId, x__xgafv=None)</code> |
| 86 | <pre>Gets a blog by id. |
Sai Cheemalapati | df61397 | 2016-10-21 13:59:49 -0700 | [diff] [blame] | 87 | |
| 88 | Args: |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 89 | 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 Cheemalapati | df61397 | 2016-10-21 13:59:49 -0700 | [diff] [blame] | 94 | |
| 95 | Returns: |
| 96 | An object of the form: |
| 97 | |
| 98 | { |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 99 | "url": "A String", # The URL where this blog is published. |
| 100 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 101 | "published": "A String", # RFC 3339 date-time when this blog was published. |
| 102 | "customMetaData": "A String", # The JSON custom meta-data for the Blog. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 103 | "pages": { # The container of pages in this blog. |
| 104 | "selfLink": "A String", # The URL of the container for pages in this blog. |
| 105 | "totalItems": 42, # The count of pages in this blog. |
Sai Cheemalapati | df61397 | 2016-10-21 13:59:49 -0700 | [diff] [blame] | 106 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 107 | "posts": { # The container of posts in this blog. |
| 108 | "items": [ # The List of Posts for this Blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 109 | { |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 110 | "content": "A String", # The content of the Post. May contain HTML markup. |
| 111 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 112 | "title": "A String", # The title of the Post. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 113 | "customMetaData": "A String", # The JSON meta-data for the Post. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 114 | "readerComments": "A String", # Comment control and display setting for readers of this post. |
| 115 | "url": "A String", # The URL where this Post is displayed. |
| 116 | "status": "A String", # Status of the post. Only set for admin-level requests. |
| 117 | "kind": "A String", # The kind of this entity. Always blogger#post. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 118 | "replies": { # The container of comments on this Post. |
| 119 | "items": [ # The List of Comments for this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 120 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 121 | "published": "A String", # RFC 3339 date-time when this comment was published. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 122 | "inReplyTo": { # Data about the comment this is in reply to. |
| 123 | "id": "A String", # The identified of the parent of this comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 124 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 125 | "updated": "A String", # RFC 3339 date-time when this comment was last updated. |
| 126 | "id": "A String", # The identifier for this resource. |
| 127 | "post": { # Data about the post containing this comment. |
| 128 | "id": "A String", # The identifier of the post containing this comment. |
| 129 | }, |
| 130 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 131 | "content": "A String", # The actual content of the comment. May include HTML markup. |
| 132 | "status": "A String", # The status of the comment (only populated for admin users). |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 133 | "kind": "A String", # The kind of this entry. Always blogger#comment. |
| 134 | "author": { # The author of this Comment. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 135 | "url": "A String", # The URL of the creator's Profile page. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 136 | "image": { # The creator's avatar. |
| 137 | "url": "A String", # The creator's avatar URL. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 138 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 139 | "displayName": "A String", # The display name. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 140 | "id": "A String", # The identifier of the creator. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 141 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 142 | "blog": { # Data about the blog containing this comment. |
| 143 | "id": "A String", # The identifier of the blog containing this comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 144 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 145 | }, |
| 146 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 147 | "totalItems": "A String", # The count of comments on this post. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 148 | "selfLink": "A String", # The URL of the comments on this post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 149 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 150 | "etag": "A String", # Etag of the resource. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 151 | "titleLink": "A String", # The title link URL, similar to atom's related link. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 152 | "labels": [ # The list of labels this Post was tagged with. |
| 153 | "A String", |
| 154 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 155 | "images": [ # Display image for the Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 156 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 157 | "url": "A String", |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 158 | }, |
| 159 | ], |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 160 | "updated": "A String", # RFC 3339 date-time when this Post was last updated. |
| 161 | "location": { # The location for geotagged posts. |
| 162 | "span": "A String", # Location's viewport span. Can be used when rendering a map preview. |
| 163 | "lat": 3.14, # Location's latitude. |
| 164 | "lng": 3.14, # Location's longitude. |
| 165 | "name": "A String", # Location name. |
| 166 | }, |
| 167 | "published": "A String", # RFC 3339 date-time when this Post was published. |
| 168 | "author": { # The author of this Post. |
| 169 | "image": { # The creator's avatar. |
| 170 | "url": "A String", # The creator's avatar URL. |
| 171 | }, |
| 172 | "id": "A String", # The identifier of the creator. |
| 173 | "displayName": "A String", # The display name. |
| 174 | "url": "A String", # The URL of the creator's Profile page. |
| 175 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 176 | "blog": { # Data about the blog containing this Post. |
| 177 | "id": "A String", # The identifier of the Blog that contains this Post. |
| 178 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 179 | "id": "A String", # The identifier of this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 180 | }, |
| 181 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 182 | "totalItems": 42, # The count of posts in this blog. |
| 183 | "selfLink": "A String", # The URL of the container for posts in this blog. |
Sai Cheemalapati | df61397 | 2016-10-21 13:59:49 -0700 | [diff] [blame] | 184 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 185 | "description": "A String", # The description of this blog. This is displayed underneath the title. |
| 186 | "name": "A String", # The name of this blog. This is displayed as the title. |
| 187 | "updated": "A String", # RFC 3339 date-time when this blog was last updated. |
| 188 | "status": "A String", # The status of the blog. |
| 189 | "locale": { # The locale this Blog is set to. |
| 190 | "variant": "A String", # The language variant this blog is authored in. |
| 191 | "language": "A String", # The language this blog is authored in. |
| 192 | "country": "A String", # The country this blog's locale is set to. |
| 193 | }, |
| 194 | "id": "A String", # The identifier for this resource. |
| 195 | "kind": "A String", # The kind of this entry. Always blogger#blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 196 | }</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 | |
| 203 | Args: |
| 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 | |
| 210 | Returns: |
| 211 | An object of the form: |
| 212 | |
| 213 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 214 | "items": [ # The list of Blogs this user has Authorship or Admin rights over. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 215 | { |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 216 | "url": "A String", # The URL where this blog is published. |
| 217 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 218 | "published": "A String", # RFC 3339 date-time when this blog was published. |
| 219 | "customMetaData": "A String", # The JSON custom meta-data for the Blog. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 220 | "pages": { # The container of pages in this blog. |
| 221 | "selfLink": "A String", # The URL of the container for pages in this blog. |
| 222 | "totalItems": 42, # The count of pages in this blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 223 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 224 | "posts": { # The container of posts in this blog. |
| 225 | "items": [ # The List of Posts for this Blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 226 | { |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 227 | "content": "A String", # The content of the Post. May contain HTML markup. |
| 228 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 229 | "title": "A String", # The title of the Post. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 230 | "customMetaData": "A String", # The JSON meta-data for the Post. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 231 | "readerComments": "A String", # Comment control and display setting for readers of this post. |
| 232 | "url": "A String", # The URL where this Post is displayed. |
| 233 | "status": "A String", # Status of the post. Only set for admin-level requests. |
| 234 | "kind": "A String", # The kind of this entity. Always blogger#post. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 235 | "replies": { # The container of comments on this Post. |
| 236 | "items": [ # The List of Comments for this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 237 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 238 | "published": "A String", # RFC 3339 date-time when this comment was published. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 239 | "inReplyTo": { # Data about the comment this is in reply to. |
| 240 | "id": "A String", # The identified of the parent of this comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 241 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 242 | "updated": "A String", # RFC 3339 date-time when this comment was last updated. |
| 243 | "id": "A String", # The identifier for this resource. |
| 244 | "post": { # Data about the post containing this comment. |
| 245 | "id": "A String", # The identifier of the post containing this comment. |
| 246 | }, |
| 247 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 248 | "content": "A String", # The actual content of the comment. May include HTML markup. |
| 249 | "status": "A String", # The status of the comment (only populated for admin users). |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 250 | "kind": "A String", # The kind of this entry. Always blogger#comment. |
| 251 | "author": { # The author of this Comment. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 252 | "url": "A String", # The URL of the creator's Profile page. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 253 | "image": { # The creator's avatar. |
| 254 | "url": "A String", # The creator's avatar URL. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 255 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 256 | "displayName": "A String", # The display name. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 257 | "id": "A String", # The identifier of the creator. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 258 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 259 | "blog": { # Data about the blog containing this comment. |
| 260 | "id": "A String", # The identifier of the blog containing this comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 261 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 262 | }, |
| 263 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 264 | "totalItems": "A String", # The count of comments on this post. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 265 | "selfLink": "A String", # The URL of the comments on this post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 266 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 267 | "etag": "A String", # Etag of the resource. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 268 | "titleLink": "A String", # The title link URL, similar to atom's related link. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 269 | "labels": [ # The list of labels this Post was tagged with. |
| 270 | "A String", |
| 271 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 272 | "images": [ # Display image for the Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 273 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 274 | "url": "A String", |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 275 | }, |
| 276 | ], |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 277 | "updated": "A String", # RFC 3339 date-time when this Post was last updated. |
| 278 | "location": { # The location for geotagged posts. |
| 279 | "span": "A String", # Location's viewport span. Can be used when rendering a map preview. |
| 280 | "lat": 3.14, # Location's latitude. |
| 281 | "lng": 3.14, # Location's longitude. |
| 282 | "name": "A String", # Location name. |
| 283 | }, |
| 284 | "published": "A String", # RFC 3339 date-time when this Post was published. |
| 285 | "author": { # The author of this Post. |
| 286 | "image": { # The creator's avatar. |
| 287 | "url": "A String", # The creator's avatar URL. |
| 288 | }, |
| 289 | "id": "A String", # The identifier of the creator. |
| 290 | "displayName": "A String", # The display name. |
| 291 | "url": "A String", # The URL of the creator's Profile page. |
| 292 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 293 | "blog": { # Data about the blog containing this Post. |
| 294 | "id": "A String", # The identifier of the Blog that contains this Post. |
| 295 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 296 | "id": "A String", # The identifier of this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 297 | }, |
| 298 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 299 | "totalItems": 42, # The count of posts in this blog. |
| 300 | "selfLink": "A String", # The URL of the container for posts in this blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 301 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 302 | "description": "A String", # The description of this blog. This is displayed underneath the title. |
| 303 | "name": "A String", # The name of this blog. This is displayed as the title. |
| 304 | "updated": "A String", # RFC 3339 date-time when this blog was last updated. |
| 305 | "status": "A String", # The status of the blog. |
| 306 | "locale": { # The locale this Blog is set to. |
| 307 | "variant": "A String", # The language variant this blog is authored in. |
| 308 | "language": "A String", # The language this blog is authored in. |
| 309 | "country": "A String", # The country this blog's locale is set to. |
| 310 | }, |
| 311 | "id": "A String", # The identifier for this resource. |
| 312 | "kind": "A String", # The kind of this entry. Always blogger#blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 313 | }, |
| 314 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 315 | "kind": "A String", # The kind of this entity. Always blogger#blogList. |
| 316 | "blogUserInfos": [ # Admin level list of blog per-user information. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 317 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 318 | "blog_user_info": { # Information about a User for the Blog. |
| 319 | "kind": "A String", # The kind of this entity. Always blogger#blogPerUserInfo. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 320 | "hasAdminAccess": True or False, # True if the user has Admin level access to the blog. |
| 321 | "userId": "A String", # ID of the User. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 322 | "blogId": "A String", # ID of the Blog resource. |
| 323 | "role": "A String", # Access permissions that the user has for the blog (ADMIN, AUTHOR, or |
| 324 | # READER). |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 325 | "photosAlbumKey": "A String", # The Photo Album Key for the user when adding photos to the blog. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 326 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 327 | "kind": "A String", # The kind of this entity. Always blogger#blogUserInfo. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 328 | "blog": { # The Blog resource. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 329 | "url": "A String", # The URL where this blog is published. |
| 330 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 331 | "published": "A String", # RFC 3339 date-time when this blog was published. |
| 332 | "customMetaData": "A String", # The JSON custom meta-data for the Blog. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 333 | "pages": { # The container of pages in this blog. |
| 334 | "selfLink": "A String", # The URL of the container for pages in this blog. |
| 335 | "totalItems": 42, # The count of pages in this blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 336 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 337 | "posts": { # The container of posts in this blog. |
| 338 | "items": [ # The List of Posts for this Blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 339 | { |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 340 | "content": "A String", # The content of the Post. May contain HTML markup. |
| 341 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 342 | "title": "A String", # The title of the Post. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 343 | "customMetaData": "A String", # The JSON meta-data for the Post. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 344 | "readerComments": "A String", # Comment control and display setting for readers of this post. |
| 345 | "url": "A String", # The URL where this Post is displayed. |
| 346 | "status": "A String", # Status of the post. Only set for admin-level requests. |
| 347 | "kind": "A String", # The kind of this entity. Always blogger#post. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 348 | "replies": { # The container of comments on this Post. |
| 349 | "items": [ # The List of Comments for this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 350 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 351 | "published": "A String", # RFC 3339 date-time when this comment was published. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 352 | "inReplyTo": { # Data about the comment this is in reply to. |
| 353 | "id": "A String", # The identified of the parent of this comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 354 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 355 | "updated": "A String", # RFC 3339 date-time when this comment was last updated. |
| 356 | "id": "A String", # The identifier for this resource. |
| 357 | "post": { # Data about the post containing this comment. |
| 358 | "id": "A String", # The identifier of the post containing this comment. |
| 359 | }, |
| 360 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 361 | "content": "A String", # The actual content of the comment. May include HTML markup. |
| 362 | "status": "A String", # The status of the comment (only populated for admin users). |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 363 | "kind": "A String", # The kind of this entry. Always blogger#comment. |
| 364 | "author": { # The author of this Comment. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 365 | "url": "A String", # The URL of the creator's Profile page. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 366 | "image": { # The creator's avatar. |
| 367 | "url": "A String", # The creator's avatar URL. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 368 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 369 | "displayName": "A String", # The display name. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 370 | "id": "A String", # The identifier of the creator. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 371 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 372 | "blog": { # Data about the blog containing this comment. |
| 373 | "id": "A String", # The identifier of the blog containing this comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 374 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 375 | }, |
| 376 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 377 | "totalItems": "A String", # The count of comments on this post. |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 378 | "selfLink": "A String", # The URL of the comments on this post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 379 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 380 | "etag": "A String", # Etag of the resource. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 381 | "titleLink": "A String", # The title link URL, similar to atom's related link. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 382 | "labels": [ # The list of labels this Post was tagged with. |
| 383 | "A String", |
| 384 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 385 | "images": [ # Display image for the Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 386 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 387 | "url": "A String", |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 388 | }, |
| 389 | ], |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 390 | "updated": "A String", # RFC 3339 date-time when this Post was last updated. |
| 391 | "location": { # The location for geotagged posts. |
| 392 | "span": "A String", # Location's viewport span. Can be used when rendering a map preview. |
| 393 | "lat": 3.14, # Location's latitude. |
| 394 | "lng": 3.14, # Location's longitude. |
| 395 | "name": "A String", # Location name. |
| 396 | }, |
| 397 | "published": "A String", # RFC 3339 date-time when this Post was published. |
| 398 | "author": { # The author of this Post. |
| 399 | "image": { # The creator's avatar. |
| 400 | "url": "A String", # The creator's avatar URL. |
| 401 | }, |
| 402 | "id": "A String", # The identifier of the creator. |
| 403 | "displayName": "A String", # The display name. |
| 404 | "url": "A String", # The URL of the creator's Profile page. |
| 405 | }, |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 406 | "blog": { # Data about the blog containing this Post. |
| 407 | "id": "A String", # The identifier of the Blog that contains this Post. |
| 408 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 409 | "id": "A String", # The identifier of this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 410 | }, |
| 411 | ], |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 412 | "totalItems": 42, # The count of posts in this blog. |
| 413 | "selfLink": "A String", # The URL of the container for posts in this blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 414 | }, |
Bu Sun Kim | 4ed7d3f | 2020-05-27 12:20:54 -0700 | [diff] [blame] | 415 | "description": "A String", # The description of this blog. This is displayed underneath the title. |
| 416 | "name": "A String", # The name of this blog. This is displayed as the title. |
| 417 | "updated": "A String", # RFC 3339 date-time when this blog was last updated. |
| 418 | "status": "A String", # The status of the blog. |
| 419 | "locale": { # The locale this Blog is set to. |
| 420 | "variant": "A String", # The language variant this blog is authored in. |
| 421 | "language": "A String", # The language this blog is authored in. |
| 422 | "country": "A String", # The country this blog's locale is set to. |
| 423 | }, |
| 424 | "id": "A String", # The identifier for this resource. |
| 425 | "kind": "A String", # The kind of this entry. Always blogger#blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 426 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame] | 427 | }, |
| 428 | ], |
Sai Cheemalapati | df61397 | 2016-10-21 13:59:49 -0700 | [diff] [blame] | 429 | }</pre> |
| 430 | </div> |
| 431 | |
| 432 | </body></html> |