特拉維斯回答瞭如何打開窗戶。您確實需要使用第三方的身份驗證來打開新的彈出式瀏覽器窗口。如果您使用的是開放標識,我還會建議使用dyuproject來幫助整體流程。當服務器端握手完成後,您需要將消息發送回客戶端,其中彈出窗口是http請求/響應的控制。因此,您需要使用成功或失敗信息從彈出窗口回撥至客戶端應用程序。我是通過首先註冊一個地方用jsni在客戶端回叫的。某處在您的驗證碼,可能是附近一個啓動的彈出瀏覽器窗口中的代碼,我有一些代碼,看起來像這樣
private native void exposeAuthorizedHandler(OpenIdPanelPresenter pres) /*-{
$wnd.handleOpenIDResponse = function() {
[email protected]::Authorized()();
};
}-*/;
private native void exposeFailedHandler(OpenIdPanelPresenter pres) /*-{
$wnd.handleOpenIDFailed = function() {
[email protected]::Failed()();
};
}-*/;
然後在瀏覽器窗口中我有服務器端代碼重定向到兩個JSP頁面中的一個,經過身份驗證的一個看起來像這樣
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<body onload="window.opener.handleOpenIDResponse();window.close();">
<h1>You have been authenticated.</h1>
</body>
</html>
失敗的一個看起來像這樣
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<h1>Authentication failed.</h1>
</br>
<div style="color:red;font-size:1.4em">${openid_fail_message}</div>
<button onclick="window.opener.handleOpenIDFailed();window.close();">Close</button>
</body>
</html>