gogol-blogger-0.0.1: Google Blogger SDK.

Copyright(c) 2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.Blogger.Comments.Get

Contents

Description

Gets one comment by ID.

See: Blogger API Reference for blogger.comments.get.

Synopsis

REST Resource

type CommentsGetResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> (Capture "postId" Text :> ("comments" :> (Capture "commentId" Text :> (QueryParam "view" CommentsGetView :> (QueryParam "alt" AltJSON :> Get `[JSON]` Comment))))))))) Source

A resource alias for blogger.comments.get method which the CommentsGet request conforms to.

Creating a Request

commentsGet Source

Creates a value of CommentsGet with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Request Lenses

cgBlogId :: Lens' CommentsGet Text Source

ID of the blog to containing the comment.

cgView :: Lens' CommentsGet (Maybe CommentsGetView) Source

Access level for the requested comment (default: READER). Note that some comments will require elevated permissions, for example comments where the parent posts which is in a draft state, or comments that are pending moderation.

cgPostId :: Lens' CommentsGet Text Source

ID of the post to fetch posts from.

cgCommentId :: Lens' CommentsGet Text Source

The ID of the comment to get.