From 480d6d341065e71f8db51bf54059d613a9320f37 Mon Sep 17 00:00:00 2001 From: Michael Xavier Date: Wed, 27 Apr 2011 21:25:50 -0700 Subject: [PATCH] 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. --- Web/Authenticate/OAuth.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/Authenticate/OAuth.hs b/Web/Authenticate/OAuth.hs index cd21f0a4..2fc2e0fe 100644 --- a/Web/Authenticate/OAuth.hs +++ b/Web/Authenticate/OAuth.hs @@ -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,