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