Add genSign to OAuth exports

This decouples the signing process from Requests a bit. Some services
require the signature to be somwehere other than in request headers,
such as in url parameters. Exposing genSign solves this.
This commit is contained in:
Michael Xavier 2011-04-27 21:25:50 -07:00
parent 705528277c
commit 480d6d3410

View File

@ -6,7 +6,7 @@ module Web.Authenticate.OAuth
-- * Operations for credentials
emptyCredential, insert, delete, inserts,
-- * Signature
signOAuth,
signOAuth, genSign,
-- * Url & operation for authentication
authorizeUrl, getAccessToken, getTemporaryCredential,
getTokenCredential,