forked from bigbluebutton/bigbluebutton
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bigbluebutton#294 from fmarier/master
Fix Persona URLs
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
||
|
@@ -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(); | ||
|