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.Posts.Search

Contents

Description

Search for a post.

See: Blogger API Reference for blogger.posts.search.

Synopsis

REST Resource

type PostsSearchResource = "blogger" :> ("v3" :> ("blogs" :> (Capture "blogId" Text :> ("posts" :> ("search" :> (QueryParam "q" Text :> (QueryParam "orderBy" PostsSearchOrderBy :> (QueryParam "fetchBodies" Bool :> (QueryParam "alt" AltJSON :> Get `[JSON]` PostList))))))))) Source

A resource alias for blogger.posts.search method which the PostsSearch request conforms to.

Creating a Request

postsSearch Source

Arguments

:: Text

psBlogId

-> Text

psQ

-> PostsSearch 

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

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

Request Lenses

psBlogId :: Lens' PostsSearch Text Source

ID of the blog to fetch the post from.

psQ :: Lens' PostsSearch Text Source

Query terms to search this blog for matching posts.

psFetchBodies :: Lens' PostsSearch Bool Source

Whether the body content of posts is included (default: true). This should be set to false when the post bodies are not required, to help minimize traffic.