AI-generated Key Takeaways
-
Retrieves a single comment using its unique ID from a specific blog post.
-
Requires authorization for private blogs but not for public ones.
-
Uses a GET request with blog ID, post ID, and comment ID as parameters.
-
Returns a
Comments
resource with details about the retrieved comment if successful. -
Provides a Java code example demonstrating how to use the API to fetch a comment.
Retrieves one comment resource by its
Authorization is required if the comment is on a blog that is private. If the comment is on a blog that is public, then this method can be called without authorization.
Request
HTTP request
GET https://www.googleapis.com/blogger/v3/blogs/blogId/posts/postId/comments/commentId
Parameters
Parameter name | Value | Description |
---|---|---|
Required parameters | ||
blogId |
string |
The ID of the blog to containing the comment. |
commentId |
string |
The ID of the comment to get. |
postId |
string |
The ID of the post to fetch the comment from. |
Request body
Do not supply a request body with this method.
Response
If successful, this method returns a Comments resource in the response body.
Examples
Note: The code examples available for this method do not represent all supported programming languages (see the client libraries page for a list of supported languages).
Java
Uses the Java client library
// The BlogId for the http://buzz.blogger.com/ blog.
String BUZZ_BLOG_ID = "2399953";
// The PostId for a buzz post with comments.
String BUZZ_POST_ID = "5310628572012276714";
// The CommentId for a comment on the above post.
String BUZZ_COMMENT_ID = "6352433676268819946";
// Configure the Java API Client for Installed Native App
HttpTransport HTTP_TRANSPORT = new NetHttpTransport();
JsonFactory JSON_FACTORY = new JacksonFactory();
// Configure the Installed App OAuth2 flow.
Credential credential = OAuth2Native.authorize(HTTP_TRANSPORT,
JSON_FACTORY, new LocalServerReceiver(),
Arrays.asList(BloggerScopes.BLOGGER));
// Construct the Blogger API access facade object.
Blogger blogger = Blogger.builder(HTTP_TRANSPORT, JSON_FACTORY)
.setApplicationName("Blogger-CommentsGet-Snippet/1.0")
.setHttpRequestInitializer(credential).build();
// The request action.
Get commentsGetAction = blogger.comments().get(BUZZ_BLOG_ID,
BUZZ_POST_ID, BUZZ_COMMENT_ID);
// Restrict the result content to just the data we need.
commentsGetAction.setFields("author/displayName,content");
// This step sends the request to the server.
Comment comment = commentsGetAction.execute();
// Now we can navigate the response.
System.out.println("Display Name: " + comment.getAuthor().getDisplayName());
System.out.println("Content: " + comment.getContent());
Try it!
Use the APIs Explorer below to call this method on live data and see the response.