googleplus-0.3.1.1: Haskell implementation of the Google+ API v1

Portabilityportable
Stabilityprovisional
MaintainerMichael Xavier <michael@michaelxavier.net>

Web.GooglePlus.Monad

Description

 

Synopsis

Documentation

data GooglePlusAuth Source

Represents authentication data with GooglePlus. Currently supports an OAuth token or an API key

Constructors

APIKey Text

Authentication using an API key

OAuthToken Text

Authenticate using a token obtianed via OAuth V2. Currently no way in the library to obtain refresh tokens

Instances

data GooglePlusEnv Source

Environment passed into requests when they are executed within a GooglePlusM

Constructors

GooglePlusEnv 

newtype GooglePlusM a Source

IO wrapper used to compose/sequence Google+ API actions. See Web.GooglePlus docs for examples