<html><body> <style> body, h1, h2, h3, div, span, p, pre, a { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; } body { font-size: 13px; padding: 1em; } h1 { font-size: 26px; margin-bottom: 1em; } h2 { font-size: 24px; margin-bottom: 1em; } h3 { font-size: 20px; margin-bottom: 1em; margin-top: 1em; } pre, code { line-height: 1.5; font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; } pre { margin-top: 0.5em; } h1, h2, h3, p { font-family: Arial, sans serif; } h1, h2, h3 { border-bottom: solid #CCC 1px; } .toc_element { margin-top: 0.5em; } .firstline { margin-left: 2 em; } .method { margin-top: 1em; border: solid 1px #CCC; padding: 1em; background: #EEE; } .details { font-weight: bold; font-size: 14px; } </style> <h1><a href="blogger_v2.html">Blogger API</a> . <a href="blogger_v2.blogs.html">blogs</a></h1> <h2>Instance Methods</h2> <p class="toc_element"> <code><a href="#get">get(blogId)</a></code></p> <p class="firstline">Gets one blog by id.</p> <h3>Method Details</h3> <div class="method"> <code class="details" id="get">get(blogId)</code> <pre>Gets one blog by id. Args: blogId: string, The ID of the blog to get. (required) Returns: An object of the form: { "kind": "blogger#blog", # The kind of this entry. Always blogger#blog "description": "A String", # The description of this blog. This is displayed underneath the title. "locale": { # The locale this Blog is set to. "country": "A String", # The country this blog's locale is set to. "variant": "A String", # The language variant this blog is authored in. "language": "A String", # The language this blog is authored in. }, "posts": { # The container of posts in this blog. "totalItems": 42, # The count of posts in this blog. "selfLink": "A String", # The URL of the container for posts in this blog. }, "updated": "A String", # RFC 3339 date-time when this blog was last updated. "id": "A String", # The identifier for this resource. "url": "A String", # The URL where this blog is published. "published": "A String", # RFC 3339 date-time when this blog was published. "pages": { # The container of pages in this blog. "totalItems": 42, # The count of pages in this blog. "selfLink": "A String", # The URL of the container for pages in this blog. }, "selfLink": "A String", # The API REST URL to fetch this resource from. "name": "A String", # The name of this blog. This is displayed as the title. }</pre> </div> </body></html>