hs-twitter-0.2.4: Haskell binding to the Twitter API

Web.Twitter.Monad

Synopsis

Documentation

data TM a Source

Instances

withEnv :: (TMEnv -> TMEnv) -> TM a -> TM aSource

withCount :: Int -> TM a -> TM aSource

withPage :: Int -> TM a -> TM aSource

withAuth :: Bool -> TM a -> TM aSource

runTM :: AuthUser -> TM a -> IO aSource

liftIO :: IO a -> TM aSource

data Result a

A type for parser results

Constructors

Ok a 
Error String 

decodeStrict :: JSON a => String -> Result a

Decode a String representing a strict JSON value. This follows the spec, and requires top level JSON types to be an Array or Object.