Skip to content

Commit

Permalink
Merge pull request bigbluebutton#294 from fmarier/master
Browse files Browse the repository at this point in the history
Fix Persona URLs
  • Loading branch information
ffdixon committed Dec 5, 2013
2 parents 6e3985d + dbb5a81 commit 2709fbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bbb-api-demo/src/main/webapp/demo_mozilla_persona.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Author: Marcos Calderon <[email protected]>
<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>

Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 2709fbd

Please sign in to comment.