John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [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_v3.html">Blogger API v3</a> . <a href="blogger_v3.blogs.html">blogs</a></h1> |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [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, maxPosts=None, view=None)</a></code></p> |
| 79 | <p class="firstline">Gets a blog by id.</p> |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 80 | <p class="toc_element"> |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 81 | <code><a href="#getByUrl">getByUrl(url, x__xgafv=None, view=None)</a></code></p> |
| 82 | <p class="firstline">Gets a blog by url.</p> |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 83 | <p class="toc_element"> |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 84 | <code><a href="#listByUser">listByUser(userId, status=None, fetchUserInfo=None, role=None, x__xgafv=None, view=None)</a></code></p> |
| 85 | <p class="firstline">Lists blogs by user.</p> |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 86 | <h3>Method Details</h3> |
| 87 | <div class="method"> |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 88 | <code class="details" id="get">get(blogId, x__xgafv=None, maxPosts=None, view=None)</code> |
| 89 | <pre>Gets a blog by id. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 90 | |
| 91 | Args: |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 92 | blogId: string, A parameter (required) |
| 93 | x__xgafv: string, V1 error format. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 94 | Allowed values |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 95 | 1 - v1 error format |
| 96 | 2 - v2 error format |
| 97 | maxPosts: integer, A parameter |
| 98 | view: string, A parameter |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 99 | |
| 100 | Returns: |
| 101 | An object of the form: |
| 102 | |
| 103 | { |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 104 | "status": "A String", # The status of the blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 105 | "updated": "A String", # RFC 3339 date-time when this blog was last updated. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 106 | "description": "A String", # The description of this blog. This is displayed underneath the title. |
| 107 | "locale": { # The locale this Blog is set to. |
| 108 | "country": "A String", # The country this blog's locale is set to. |
| 109 | "variant": "A String", # The language variant this blog is authored in. |
| 110 | "language": "A String", # The language this blog is authored in. |
| 111 | }, |
| 112 | "posts": { # The container of posts in this blog. |
| 113 | "totalItems": 42, # The count of posts in this blog. |
| 114 | "items": [ # The List of Posts for this Blog. |
| 115 | { |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 116 | "status": "A String", # Status of the post. Only set for admin-level requests. |
| 117 | "blog": { # Data about the blog containing this Post. |
| 118 | "id": "A String", # The identifier of the Blog that contains this Post. |
| 119 | }, |
| 120 | "updated": "A String", # RFC 3339 date-time when this Post was last updated. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 121 | "titleLink": "A String", # The title link URL, similar to atom's related link. |
| 122 | "author": { # The author of this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 123 | "url": "A String", # The URL of the creator's Profile page. |
| 124 | "image": { # The creator's avatar. |
| 125 | "url": "A String", # The creator's avatar URL. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 126 | }, |
| 127 | "displayName": "A String", # The display name. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 128 | "id": "A String", # The identifier of the creator. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 129 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 130 | "title": "A String", # The title of the Post. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 131 | "replies": { # The container of comments on this Post. |
| 132 | "totalItems": "A String", # The count of comments on this post. |
| 133 | "items": [ # The List of Comments for this Post. |
| 134 | { |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 135 | "status": "A String", # The status of the comment (only populated for admin users). |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 136 | "inReplyTo": { # Data about the comment this is in reply to. |
| 137 | "id": "A String", # The identified of the parent of this comment. |
| 138 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 139 | "kind": "A String", # The kind of this entry. Always blogger#comment. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 140 | "author": { # The author of this Comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 141 | "url": "A String", # The URL of the creator's Profile page. |
| 142 | "image": { # The creator's avatar. |
| 143 | "url": "A String", # The creator's avatar URL. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 144 | }, |
| 145 | "displayName": "A String", # The display name. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 146 | "id": "A String", # The identifier of the creator. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 147 | }, |
| 148 | "updated": "A String", # RFC 3339 date-time when this comment was last updated. |
| 149 | "blog": { # Data about the blog containing this comment. |
| 150 | "id": "A String", # The identifier of the blog containing this comment. |
| 151 | }, |
| 152 | "published": "A String", # RFC 3339 date-time when this comment was published. |
| 153 | "post": { # Data about the post containing this comment. |
| 154 | "id": "A String", # The identifier of the post containing this comment. |
| 155 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 156 | "content": "A String", # The actual content of the comment. May include HTML markup. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 157 | "id": "A String", # The identifier for this resource. |
| 158 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 159 | }, |
| 160 | ], |
| 161 | "selfLink": "A String", # The URL of the comments on this post. |
| 162 | }, |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 163 | "readerComments": "A String", # Comment control and display setting for readers of this post. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 164 | "labels": [ # The list of labels this Post was tagged with. |
| 165 | "A String", |
| 166 | ], |
| 167 | "customMetaData": "A String", # The JSON meta-data for the Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 168 | "kind": "A String", # The kind of this entity. Always blogger#post. |
| 169 | "content": "A String", # The content of the Post. May contain HTML markup. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 170 | "url": "A String", # The URL where this Post is displayed. |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 171 | "etag": "A String", # Etag of the resource. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 172 | "location": { # The location for geotagged posts. |
| 173 | "lat": 3.14, # Location's latitude. |
| 174 | "lng": 3.14, # Location's longitude. |
| 175 | "span": "A String", # Location's viewport span. Can be used when rendering a map preview. |
| 176 | "name": "A String", # Location name. |
| 177 | }, |
| 178 | "published": "A String", # RFC 3339 date-time when this Post was published. |
| 179 | "images": [ # Display image for the Post. |
| 180 | { |
| 181 | "url": "A String", |
| 182 | }, |
| 183 | ], |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 184 | "id": "A String", # The identifier of this Post. |
| 185 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 186 | }, |
| 187 | ], |
| 188 | "selfLink": "A String", # The URL of the container for posts in this blog. |
| 189 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 190 | "customMetaData": "A String", # The JSON custom meta-data for the Blog. |
| 191 | "kind": "A String", # The kind of this entry. Always blogger#blog. |
| 192 | "id": "A String", # The identifier for this resource. |
| 193 | "url": "A String", # The URL where this blog is published. |
| 194 | "published": "A String", # RFC 3339 date-time when this blog was published. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 195 | "pages": { # The container of pages in this blog. |
| 196 | "totalItems": 42, # The count of pages in this blog. |
| 197 | "selfLink": "A String", # The URL of the container for pages in this blog. |
| 198 | }, |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 199 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 200 | "name": "A String", # The name of this blog. This is displayed as the title. |
| 201 | }</pre> |
| 202 | </div> |
| 203 | |
| 204 | <div class="method"> |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 205 | <code class="details" id="getByUrl">getByUrl(url, x__xgafv=None, view=None)</code> |
| 206 | <pre>Gets a blog by url. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 207 | |
| 208 | Args: |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 209 | url: string, A parameter (required) |
| 210 | x__xgafv: string, V1 error format. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 211 | Allowed values |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 212 | 1 - v1 error format |
| 213 | 2 - v2 error format |
| 214 | view: string, A parameter |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 215 | |
| 216 | Returns: |
| 217 | An object of the form: |
| 218 | |
| 219 | { |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 220 | "status": "A String", # The status of the blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 221 | "updated": "A String", # RFC 3339 date-time when this blog was last updated. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 222 | "description": "A String", # The description of this blog. This is displayed underneath the title. |
| 223 | "locale": { # The locale this Blog is set to. |
| 224 | "country": "A String", # The country this blog's locale is set to. |
| 225 | "variant": "A String", # The language variant this blog is authored in. |
| 226 | "language": "A String", # The language this blog is authored in. |
| 227 | }, |
| 228 | "posts": { # The container of posts in this blog. |
| 229 | "totalItems": 42, # The count of posts in this blog. |
| 230 | "items": [ # The List of Posts for this Blog. |
| 231 | { |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 232 | "status": "A String", # Status of the post. Only set for admin-level requests. |
| 233 | "blog": { # Data about the blog containing this Post. |
| 234 | "id": "A String", # The identifier of the Blog that contains this Post. |
| 235 | }, |
| 236 | "updated": "A String", # RFC 3339 date-time when this Post was last updated. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 237 | "titleLink": "A String", # The title link URL, similar to atom's related link. |
| 238 | "author": { # The author of this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 239 | "url": "A String", # The URL of the creator's Profile page. |
| 240 | "image": { # The creator's avatar. |
| 241 | "url": "A String", # The creator's avatar URL. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 242 | }, |
| 243 | "displayName": "A String", # The display name. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 244 | "id": "A String", # The identifier of the creator. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 245 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 246 | "title": "A String", # The title of the Post. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 247 | "replies": { # The container of comments on this Post. |
| 248 | "totalItems": "A String", # The count of comments on this post. |
| 249 | "items": [ # The List of Comments for this Post. |
| 250 | { |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 251 | "status": "A String", # The status of the comment (only populated for admin users). |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 252 | "inReplyTo": { # Data about the comment this is in reply to. |
| 253 | "id": "A String", # The identified of the parent of this comment. |
| 254 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 255 | "kind": "A String", # The kind of this entry. Always blogger#comment. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 256 | "author": { # The author of this Comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 257 | "url": "A String", # The URL of the creator's Profile page. |
| 258 | "image": { # The creator's avatar. |
| 259 | "url": "A String", # The creator's avatar URL. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 260 | }, |
| 261 | "displayName": "A String", # The display name. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 262 | "id": "A String", # The identifier of the creator. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 263 | }, |
| 264 | "updated": "A String", # RFC 3339 date-time when this comment was last updated. |
| 265 | "blog": { # Data about the blog containing this comment. |
| 266 | "id": "A String", # The identifier of the blog containing this comment. |
| 267 | }, |
| 268 | "published": "A String", # RFC 3339 date-time when this comment was published. |
| 269 | "post": { # Data about the post containing this comment. |
| 270 | "id": "A String", # The identifier of the post containing this comment. |
| 271 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 272 | "content": "A String", # The actual content of the comment. May include HTML markup. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 273 | "id": "A String", # The identifier for this resource. |
| 274 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 275 | }, |
| 276 | ], |
| 277 | "selfLink": "A String", # The URL of the comments on this post. |
| 278 | }, |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 279 | "readerComments": "A String", # Comment control and display setting for readers of this post. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 280 | "labels": [ # The list of labels this Post was tagged with. |
| 281 | "A String", |
| 282 | ], |
| 283 | "customMetaData": "A String", # The JSON meta-data for the Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 284 | "kind": "A String", # The kind of this entity. Always blogger#post. |
| 285 | "content": "A String", # The content of the Post. May contain HTML markup. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 286 | "url": "A String", # The URL where this Post is displayed. |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 287 | "etag": "A String", # Etag of the resource. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 288 | "location": { # The location for geotagged posts. |
| 289 | "lat": 3.14, # Location's latitude. |
| 290 | "lng": 3.14, # Location's longitude. |
| 291 | "span": "A String", # Location's viewport span. Can be used when rendering a map preview. |
| 292 | "name": "A String", # Location name. |
| 293 | }, |
| 294 | "published": "A String", # RFC 3339 date-time when this Post was published. |
| 295 | "images": [ # Display image for the Post. |
| 296 | { |
| 297 | "url": "A String", |
| 298 | }, |
| 299 | ], |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 300 | "id": "A String", # The identifier of this Post. |
| 301 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 302 | }, |
| 303 | ], |
| 304 | "selfLink": "A String", # The URL of the container for posts in this blog. |
| 305 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 306 | "customMetaData": "A String", # The JSON custom meta-data for the Blog. |
| 307 | "kind": "A String", # The kind of this entry. Always blogger#blog. |
| 308 | "id": "A String", # The identifier for this resource. |
| 309 | "url": "A String", # The URL where this blog is published. |
| 310 | "published": "A String", # RFC 3339 date-time when this blog was published. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 311 | "pages": { # The container of pages in this blog. |
| 312 | "totalItems": 42, # The count of pages in this blog. |
| 313 | "selfLink": "A String", # The URL of the container for pages in this blog. |
| 314 | }, |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 315 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 316 | "name": "A String", # The name of this blog. This is displayed as the title. |
| 317 | }</pre> |
| 318 | </div> |
| 319 | |
| 320 | <div class="method"> |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 321 | <code class="details" id="listByUser">listByUser(userId, status=None, fetchUserInfo=None, role=None, x__xgafv=None, view=None)</code> |
| 322 | <pre>Lists blogs by user. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 323 | |
| 324 | Args: |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 325 | userId: string, A parameter (required) |
| 326 | status: string, Default value of status is LIVE. (repeated) |
| 327 | fetchUserInfo: boolean, A parameter |
| 328 | role: string, A parameter (repeated) |
| 329 | x__xgafv: string, V1 error format. |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 330 | Allowed values |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 331 | 1 - v1 error format |
| 332 | 2 - v2 error format |
| 333 | view: string, A parameter |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 334 | |
| 335 | Returns: |
| 336 | An object of the form: |
| 337 | |
| 338 | { |
| 339 | "items": [ # The list of Blogs this user has Authorship or Admin rights over. |
| 340 | { |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 341 | "status": "A String", # The status of the blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 342 | "updated": "A String", # RFC 3339 date-time when this blog was last updated. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 343 | "description": "A String", # The description of this blog. This is displayed underneath the title. |
| 344 | "locale": { # The locale this Blog is set to. |
| 345 | "country": "A String", # The country this blog's locale is set to. |
| 346 | "variant": "A String", # The language variant this blog is authored in. |
| 347 | "language": "A String", # The language this blog is authored in. |
| 348 | }, |
| 349 | "posts": { # The container of posts in this blog. |
| 350 | "totalItems": 42, # The count of posts in this blog. |
| 351 | "items": [ # The List of Posts for this Blog. |
| 352 | { |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 353 | "status": "A String", # Status of the post. Only set for admin-level requests. |
| 354 | "blog": { # Data about the blog containing this Post. |
| 355 | "id": "A String", # The identifier of the Blog that contains this Post. |
| 356 | }, |
| 357 | "updated": "A String", # RFC 3339 date-time when this Post was last updated. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 358 | "titleLink": "A String", # The title link URL, similar to atom's related link. |
| 359 | "author": { # The author of this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 360 | "url": "A String", # The URL of the creator's Profile page. |
| 361 | "image": { # The creator's avatar. |
| 362 | "url": "A String", # The creator's avatar URL. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 363 | }, |
| 364 | "displayName": "A String", # The display name. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 365 | "id": "A String", # The identifier of the creator. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 366 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 367 | "title": "A String", # The title of the Post. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 368 | "replies": { # The container of comments on this Post. |
| 369 | "totalItems": "A String", # The count of comments on this post. |
| 370 | "items": [ # The List of Comments for this Post. |
| 371 | { |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 372 | "status": "A String", # The status of the comment (only populated for admin users). |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 373 | "inReplyTo": { # Data about the comment this is in reply to. |
| 374 | "id": "A String", # The identified of the parent of this comment. |
| 375 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 376 | "kind": "A String", # The kind of this entry. Always blogger#comment. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 377 | "author": { # The author of this Comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 378 | "url": "A String", # The URL of the creator's Profile page. |
| 379 | "image": { # The creator's avatar. |
| 380 | "url": "A String", # The creator's avatar URL. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 381 | }, |
| 382 | "displayName": "A String", # The display name. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 383 | "id": "A String", # The identifier of the creator. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 384 | }, |
| 385 | "updated": "A String", # RFC 3339 date-time when this comment was last updated. |
| 386 | "blog": { # Data about the blog containing this comment. |
| 387 | "id": "A String", # The identifier of the blog containing this comment. |
| 388 | }, |
| 389 | "published": "A String", # RFC 3339 date-time when this comment was published. |
| 390 | "post": { # Data about the post containing this comment. |
| 391 | "id": "A String", # The identifier of the post containing this comment. |
| 392 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 393 | "content": "A String", # The actual content of the comment. May include HTML markup. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 394 | "id": "A String", # The identifier for this resource. |
| 395 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 396 | }, |
| 397 | ], |
| 398 | "selfLink": "A String", # The URL of the comments on this post. |
| 399 | }, |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 400 | "readerComments": "A String", # Comment control and display setting for readers of this post. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 401 | "labels": [ # The list of labels this Post was tagged with. |
| 402 | "A String", |
| 403 | ], |
| 404 | "customMetaData": "A String", # The JSON meta-data for the Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 405 | "kind": "A String", # The kind of this entity. Always blogger#post. |
| 406 | "content": "A String", # The content of the Post. May contain HTML markup. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 407 | "url": "A String", # The URL where this Post is displayed. |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 408 | "etag": "A String", # Etag of the resource. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 409 | "location": { # The location for geotagged posts. |
| 410 | "lat": 3.14, # Location's latitude. |
| 411 | "lng": 3.14, # Location's longitude. |
| 412 | "span": "A String", # Location's viewport span. Can be used when rendering a map preview. |
| 413 | "name": "A String", # Location name. |
| 414 | }, |
| 415 | "published": "A String", # RFC 3339 date-time when this Post was published. |
| 416 | "images": [ # Display image for the Post. |
| 417 | { |
| 418 | "url": "A String", |
| 419 | }, |
| 420 | ], |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 421 | "id": "A String", # The identifier of this Post. |
| 422 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 423 | }, |
| 424 | ], |
| 425 | "selfLink": "A String", # The URL of the container for posts in this blog. |
| 426 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 427 | "customMetaData": "A String", # The JSON custom meta-data for the Blog. |
| 428 | "kind": "A String", # The kind of this entry. Always blogger#blog. |
| 429 | "id": "A String", # The identifier for this resource. |
| 430 | "url": "A String", # The URL where this blog is published. |
| 431 | "published": "A String", # RFC 3339 date-time when this blog was published. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 432 | "pages": { # The container of pages in this blog. |
| 433 | "totalItems": 42, # The count of pages in this blog. |
| 434 | "selfLink": "A String", # The URL of the container for pages in this blog. |
| 435 | }, |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 436 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 437 | "name": "A String", # The name of this blog. This is displayed as the title. |
| 438 | }, |
| 439 | ], |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 440 | "kind": "A String", # The kind of this entity. Always blogger#blogList. |
| 441 | "blogUserInfos": [ # Admin level list of blog per-user information. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 442 | { |
| 443 | "blog": { # The Blog resource. |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 444 | "status": "A String", # The status of the blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 445 | "updated": "A String", # RFC 3339 date-time when this blog was last updated. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 446 | "description": "A String", # The description of this blog. This is displayed underneath the title. |
| 447 | "locale": { # The locale this Blog is set to. |
| 448 | "country": "A String", # The country this blog's locale is set to. |
| 449 | "variant": "A String", # The language variant this blog is authored in. |
| 450 | "language": "A String", # The language this blog is authored in. |
| 451 | }, |
| 452 | "posts": { # The container of posts in this blog. |
| 453 | "totalItems": 42, # The count of posts in this blog. |
| 454 | "items": [ # The List of Posts for this Blog. |
| 455 | { |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 456 | "status": "A String", # Status of the post. Only set for admin-level requests. |
| 457 | "blog": { # Data about the blog containing this Post. |
| 458 | "id": "A String", # The identifier of the Blog that contains this Post. |
| 459 | }, |
| 460 | "updated": "A String", # RFC 3339 date-time when this Post was last updated. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 461 | "titleLink": "A String", # The title link URL, similar to atom's related link. |
| 462 | "author": { # The author of this Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 463 | "url": "A String", # The URL of the creator's Profile page. |
| 464 | "image": { # The creator's avatar. |
| 465 | "url": "A String", # The creator's avatar URL. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 466 | }, |
| 467 | "displayName": "A String", # The display name. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 468 | "id": "A String", # The identifier of the creator. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 469 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 470 | "title": "A String", # The title of the Post. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 471 | "replies": { # The container of comments on this Post. |
| 472 | "totalItems": "A String", # The count of comments on this post. |
| 473 | "items": [ # The List of Comments for this Post. |
| 474 | { |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 475 | "status": "A String", # The status of the comment (only populated for admin users). |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 476 | "inReplyTo": { # Data about the comment this is in reply to. |
| 477 | "id": "A String", # The identified of the parent of this comment. |
| 478 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 479 | "kind": "A String", # The kind of this entry. Always blogger#comment. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 480 | "author": { # The author of this Comment. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 481 | "url": "A String", # The URL of the creator's Profile page. |
| 482 | "image": { # The creator's avatar. |
| 483 | "url": "A String", # The creator's avatar URL. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 484 | }, |
| 485 | "displayName": "A String", # The display name. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 486 | "id": "A String", # The identifier of the creator. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 487 | }, |
| 488 | "updated": "A String", # RFC 3339 date-time when this comment was last updated. |
| 489 | "blog": { # Data about the blog containing this comment. |
| 490 | "id": "A String", # The identifier of the blog containing this comment. |
| 491 | }, |
| 492 | "published": "A String", # RFC 3339 date-time when this comment was published. |
| 493 | "post": { # Data about the post containing this comment. |
| 494 | "id": "A String", # The identifier of the post containing this comment. |
| 495 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 496 | "content": "A String", # The actual content of the comment. May include HTML markup. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 497 | "id": "A String", # The identifier for this resource. |
| 498 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 499 | }, |
| 500 | ], |
| 501 | "selfLink": "A String", # The URL of the comments on this post. |
| 502 | }, |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 503 | "readerComments": "A String", # Comment control and display setting for readers of this post. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 504 | "labels": [ # The list of labels this Post was tagged with. |
| 505 | "A String", |
| 506 | ], |
| 507 | "customMetaData": "A String", # The JSON meta-data for the Post. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 508 | "kind": "A String", # The kind of this entity. Always blogger#post. |
| 509 | "content": "A String", # The content of the Post. May contain HTML markup. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 510 | "url": "A String", # The URL where this Post is displayed. |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 511 | "etag": "A String", # Etag of the resource. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 512 | "location": { # The location for geotagged posts. |
| 513 | "lat": 3.14, # Location's latitude. |
| 514 | "lng": 3.14, # Location's longitude. |
| 515 | "span": "A String", # Location's viewport span. Can be used when rendering a map preview. |
| 516 | "name": "A String", # Location name. |
| 517 | }, |
| 518 | "published": "A String", # RFC 3339 date-time when this Post was published. |
| 519 | "images": [ # Display image for the Post. |
| 520 | { |
| 521 | "url": "A String", |
| 522 | }, |
| 523 | ], |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 524 | "id": "A String", # The identifier of this Post. |
| 525 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 526 | }, |
| 527 | ], |
| 528 | "selfLink": "A String", # The URL of the container for posts in this blog. |
| 529 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 530 | "customMetaData": "A String", # The JSON custom meta-data for the Blog. |
| 531 | "kind": "A String", # The kind of this entry. Always blogger#blog. |
| 532 | "id": "A String", # The identifier for this resource. |
| 533 | "url": "A String", # The URL where this blog is published. |
| 534 | "published": "A String", # RFC 3339 date-time when this blog was published. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 535 | "pages": { # The container of pages in this blog. |
| 536 | "totalItems": 42, # The count of pages in this blog. |
| 537 | "selfLink": "A String", # The URL of the container for pages in this blog. |
| 538 | }, |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 539 | "selfLink": "A String", # The API REST URL to fetch this resource from. |
| 540 | "name": "A String", # The name of this blog. This is displayed as the title. |
| 541 | }, |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 542 | "kind": "A String", # The kind of this entity. Always blogger#blogUserInfo. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 543 | "blog_user_info": { # Information about a User for the Blog. |
| 544 | "hasAdminAccess": True or False, # True if the user has Admin level access to the blog. |
Dan O'Meara | dd49464 | 2020-05-01 07:42:23 -0700 | [diff] [blame^] | 545 | "kind": "A String", # The kind of this entity. Always blogger#blogPerUserInfo. |
| 546 | "userId": "A String", # ID of the User. |
| 547 | "role": "A String", # Access permissions that the user has for the blog (ADMIN, AUTHOR, or |
| 548 | # READER). |
| 549 | "photosAlbumKey": "A String", # The Photo Album Key for the user when adding photos to the blog. |
| 550 | "blogId": "A String", # ID of the Blog resource. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 551 | }, |
| 552 | }, |
| 553 | ], |
| 554 | }</pre> |
| 555 | </div> |
| 556 | |
| 557 | </body></html> |