diff --git a/Web/Authenticate/BrowserId.hs b/Web/Authenticate/BrowserId.hs
--- a/Web/Authenticate/BrowserId.hs
+++ b/Web/Authenticate/BrowserId.hs
@@ -17,7 +17,7 @@
 
 -- | 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,13 +25,16 @@
                -> Manager
                -> m (Maybe Text)
 checkAssertion audience assertion manager = do
-    req' <- liftIO $ parseUrl "https://browserid.org/verify"
+    liftIO $ putStrLn "In checkAssertion"
+    liftIO $ print (audience, assertion)
+    req' <- liftIO $ parseUrl "https://verifier.login.persona.org/verify"
     let req = urlEncodedBody
                 [ ("audience", encodeUtf8 audience)
                 , ("assertion", encodeUtf8 assertion)
                 ] req' { method = "POST" }
     res <- httpLbs req manager
     let lbs = responseBody res
+    liftIO $ putStrLn $ "Response body: " ++ show lbs
     return $ maybeResult (parse json lbs) >>= getEmail
   where
     getEmail (Object o) =
diff --git a/authenticate.cabal b/authenticate.cabal
--- a/authenticate.cabal
+++ b/authenticate.cabal
@@ -1,5 +1,5 @@
 name:            authenticate
-version:         1.3.2.2
+version:         1.3.2.3
 license:         BSD3
 license-file:    LICENSE
 author:          Michael Snoyman, Hiromi Ishii, Arash Rouhani
