| -rw-r--r-- | Web/Authenticate/BrowserId.hs | 4 | ||||
| -rw-r--r-- | authenticate.cabal | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Web/Authenticate/BrowserId.hs b/Web/Authenticate/BrowserId.hs index 89b7902..c2a23b8 100644 --- a/Web/Authenticate/BrowserId.hs +++ b/Web/Authenticate/BrowserId.hs @@ -17,7 +17,7 @@ import Control.Monad.Trans.Resource (MonadResource) -- | Location of the Javascript file hosted by browserid.org browserIdJs :: Text -browserIdJs = "https://browserid.org/include.js" +browserIdJs = "https://login.persona.org/include.js" checkAssertion :: (MonadResource m, MonadBaseControl IO m) => Text -- ^ audience @@ -25,7 +25,7 @@ checkAssertion :: (MonadResource m, MonadBaseControl IO m) -> Manager -> m (Maybe Text) checkAssertion audience assertion manager = do - req' <- liftIO $ parseUrl "https://browserid.org/verify" + req' <- liftIO $ parseUrl "https://verifier.login.persona.org/verify" let req = urlEncodedBody [ ("audience", encodeUtf8 audience) , ("assertion", encodeUtf8 assertion) diff --git a/authenticate.cabal b/authenticate.cabal index 824b0fb..8e5c068 100644 --- a/authenticate.cabal +++ b/authenticate.cabal @@ -1,5 +1,5 @@ name: authenticate -version: 1.3.2.1 +version: 1.3.2.4 license: BSD3 license-file: LICENSE author: Michael Snoyman, Hiromi Ishii, Arash Rouhani @@ -26,15 +26,15 @@ library , case-insensitive >= 0.2 , text , http-types >= 0.6 - , xml-conduit >= 1.0 && < 1.1 + , xml-conduit >= 1.0 , blaze-builder , attoparsec , containers , unordered-containers - , conduit >= 0.5 && < 0.6 + , conduit >= 0.5 , resourcet >= 0.3 , monad-control >= 0.3 - , blaze-builder-conduit >= 0.5 && < 0.6 + , blaze-builder-conduit >= 0.5 exposed-modules: Web.Authenticate.Rpxnow, Web.Authenticate.OpenId, Web.Authenticate.BrowserId, |
