diff --git a/Web/Authenticate/OAuth.hs b/Web/Authenticate/OAuth.hs index eed98ecb..20f6dc61 100644 --- a/Web/Authenticate/OAuth.hs +++ b/Web/Authenticate/OAuth.hs @@ -1,15 +1,15 @@ {-# LANGUAGE DeriveDataTypeable, OverloadedStrings, StandaloneDeriving #-} {-# OPTIONS_GHC -Wall -fno-warn-orphans #-} module Web.Authenticate.OAuth - ( -- | Data types + ( -- * Data types OAuth(..), SignMethod(..), Credential(..), - -- | Operations for credentials + -- * Operations for credentials emptyCredential, insert, delete, inserts, - -- | Signature + -- * Signature signOAuth, - -- | Url & operation for authentication + -- * Url & operation for authentication authorizeUrl, getAccessToken, getTemporaryCredential, - -- | Utility Methods + -- * Utility Methods paramEncode ) where import Network.HTTP.Enumerator