Skip to content
Snippets Groups Projects
Commit dbb5a81c authored by Francois Marier's avatar Francois Marier
Browse files

Fix Persona URLs

The old browserid.org URLs are deprecated and will stop working at some point.
parent 6e3985d2
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ Author: Marcos Calderon <mcmarkos86@gmail.com>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Join Demo Meeting using Mozilla Persona</title>
<script src="https://browserid.org/include.js" type="text/javascript"></script>
<script src="https://login.persona.org/include.js" type="text/javascript"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
......@@ -109,7 +109,7 @@ function loggedIn(res){
String data = URLEncoder.encode("assertion", "UTF-8") + "=" + URLEncoder.encode(request.getParameter("assertion"), "UTF-8");
data += "&" + URLEncoder.encode("audience", "UTF-8") + "=" + URLEncoder.encode(BigBlueButtonURL.replace("/bigbluebutton/",""),"UTF-8");
URL urlBrowserID = new URL("https://browserid.org/verify");
URL urlBrowserID = new URL("https://verifier.login.persona.org/verify");
URLConnection conn = urlBrowserID.openConnection();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment