1<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5  margin: 0;
6  padding: 0;
7  border: 0;
8  font-weight: inherit;
9  font-style: inherit;
10  font-size: 100%;
11  font-family: inherit;
12  vertical-align: baseline;
13}
14
15body {
16  font-size: 13px;
17  padding: 1em;
18}
19
20h1 {
21  font-size: 26px;
22  margin-bottom: 1em;
23}
24
25h2 {
26  font-size: 24px;
27  margin-bottom: 1em;
28}
29
30h3 {
31  font-size: 20px;
32  margin-bottom: 1em;
33  margin-top: 1em;
34}
35
36pre, code {
37  line-height: 1.5;
38  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42  margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46  font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50  border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54  margin-top: 0.5em;
55}
56
57.firstline {
58  margin-left: 2 em;
59}
60
61.method  {
62  margin-top: 1em;
63  border: solid 1px #CCC;
64  padding: 1em;
65  background: #EEE;
66}
67
68.details {
69  font-weight: bold;
70  font-size: 14px;
71}
72
73</style>
74
75<h1><a href="blogger_v2.html">Blogger API v3</a> . <a href="blogger_v2.comments.html">comments</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#get">get(blogId, postId, commentId, x__xgafv=None)</a></code></p>
82<p class="firstline">Gets a comment by blog id, post id and comment id.</p>
83<p class="toc_element">
84  <code><a href="#list">list(blogId, postId, fetchBodies=None, maxResults=None, pageToken=None, startDate=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Lists comments.</p>
86<p class="toc_element">
87  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
88<p class="firstline">Retrieves the next page of results.</p>
89<h3>Method Details</h3>
90<div class="method">
91    <code class="details" id="close">close()</code>
92  <pre>Close httplib2 connections.</pre>
93</div>
94
95<div class="method">
96    <code class="details" id="get">get(blogId, postId, commentId, x__xgafv=None)</code>
97  <pre>Gets a comment by blog id, post id and comment id.
98
99Args:
100  blogId: string, A parameter (required)
101  postId: string, A parameter (required)
102  commentId: string, A parameter (required)
103  x__xgafv: string, V1 error format.
104    Allowed values
105      1 - v1 error format
106      2 - v2 error format
107
108Returns:
109  An object of the form:
110
111    {
112  &quot;author&quot;: { # The author of this Comment.
113    &quot;displayName&quot;: &quot;A String&quot;, # The display name.
114    &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
115    &quot;image&quot;: { # The creator&#x27;s avatar.
116      &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
117    },
118    &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
119  },
120  &quot;blog&quot;: { # Data about the blog containing this comment.
121    &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
122  },
123  &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
124  &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
125  &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
126    &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
127  },
128  &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
129  &quot;post&quot;: { # Data about the post containing this comment.
130    &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
131  },
132  &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
133  &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
134  &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
135  &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
136}</pre>
137</div>
138
139<div class="method">
140    <code class="details" id="list">list(blogId, postId, fetchBodies=None, maxResults=None, pageToken=None, startDate=None, x__xgafv=None)</code>
141  <pre>Lists comments.
142
143Args:
144  blogId: string, A parameter (required)
145  postId: string, A parameter (required)
146  fetchBodies: boolean, A parameter
147  maxResults: integer, A parameter
148  pageToken: string, A parameter
149  startDate: string, A parameter
150  x__xgafv: string, V1 error format.
151    Allowed values
152      1 - v1 error format
153      2 - v2 error format
154
155Returns:
156  An object of the form:
157
158    {
159  &quot;etag&quot;: &quot;A String&quot;, # Etag of the response.
160  &quot;items&quot;: [ # The List of Comments for a Post.
161    {
162      &quot;author&quot;: { # The author of this Comment.
163        &quot;displayName&quot;: &quot;A String&quot;, # The display name.
164        &quot;id&quot;: &quot;A String&quot;, # The identifier of the creator.
165        &quot;image&quot;: { # The creator&#x27;s avatar.
166          &quot;url&quot;: &quot;A String&quot;, # The creator&#x27;s avatar URL.
167        },
168        &quot;url&quot;: &quot;A String&quot;, # The URL of the creator&#x27;s Profile page.
169      },
170      &quot;blog&quot;: { # Data about the blog containing this comment.
171        &quot;id&quot;: &quot;A String&quot;, # The identifier of the blog containing this comment.
172      },
173      &quot;content&quot;: &quot;A String&quot;, # The actual content of the comment. May include HTML markup.
174      &quot;id&quot;: &quot;A String&quot;, # The identifier for this resource.
175      &quot;inReplyTo&quot;: { # Data about the comment this is in reply to.
176        &quot;id&quot;: &quot;A String&quot;, # The identified of the parent of this comment.
177      },
178      &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#comment.
179      &quot;post&quot;: { # Data about the post containing this comment.
180        &quot;id&quot;: &quot;A String&quot;, # The identifier of the post containing this comment.
181      },
182      &quot;published&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was published.
183      &quot;selfLink&quot;: &quot;A String&quot;, # The API REST URL to fetch this resource from.
184      &quot;status&quot;: &quot;A String&quot;, # The status of the comment (only populated for admin users).
185      &quot;updated&quot;: &quot;A String&quot;, # RFC 3339 date-time when this comment was last updated.
186    },
187  ],
188  &quot;kind&quot;: &quot;A String&quot;, # The kind of this entry. Always blogger#commentList.
189  &quot;nextPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the next page, if one exists.
190  &quot;prevPageToken&quot;: &quot;A String&quot;, # Pagination token to fetch the previous page, if one exists.
191}</pre>
192</div>
193
194<div class="method">
195    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
196  <pre>Retrieves the next page of results.
197
198Args:
199  previous_request: The request for the previous page. (required)
200  previous_response: The response from the request for the previous page. (required)
201
202Returns:
203  A request object that you can call &#x27;execute()&#x27; on to request the next
204  page. Returns None if there are no more items in the collection.
205    </pre>
206</div>
207
208</body></html>