liblastfm-0.1.1.0: Lastfm API interface

Safe HaskellNone

Network.Lastfm.Response

Contents

Description

Request sending and Response parsing

Synopsis

Sign Request

Signing is important part of every authentication requiring API request. Basically, every such request is appended with md5 footprint of its arguments as described at http://www.last.fm/api/authspec#8

newtype Secret Source

Application secret

Constructors

Secret Text 

Get Response

lastfm :: Supported f => Request f Send Ready -> IO (Response f)Source

Send Request and parse Response

lastfm' :: Supported f => R f Send Ready -> IO (Response f)Source

Send R and parse Response

That's rarely needed unless you want low-level requests manipulation

finalize :: Supported f => Request f Send Ready -> R f Send ReadySource

Get R from Request

That's rarely needed unless you want low-level requests manipulation