Skip to main content
Version: 3.5.x

TokenBased应用集成

本文介绍TokenBased应用如何与MaxKey进行集成。

应用注册

应用在MaxKey管理系统进行注册,注册的配置信息如下

sso_token_conf

LTPA使用Cookie传输令牌

sso_token_ltpa_conf

TokenBased客户端集成

本文使用JAVA WEB程序为例

引入客户端所需包

gson-2.2.4.jar
maxkey-client-sdk.jar
nimbus-jose-jwt-8.10.jar
commons-codec-1.9.jar
commons-io-2.2.jar
commons-logging-1.1.1.jar

简单令牌

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page language="java" import="org.maxkey.client.tokenbase.*"%>
<%@ page language="java" import="org.maxkey.client.crypto.*"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

String token =request.getParameter("token");
System.out.println("token : "+token);
String tokenString=TokenUtils.decode(token, "x8zPbCya", ReciprocalUtils.Algorithm.DES);
String parseToken[]=TokenUtils.parseSimpleBasedToken(tokenString);
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>SimpleBasedToken Demo</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="SimpleBasedToken Demo">
<link rel="shortcut icon" type="image/x-icon" href="<%=basePath %>/images/favicon.ico"/>
<link type="text/css" rel="stylesheet" href="<%=basePath %>/demo.css"/>

</head>

<body>
<div class="container">
<table class="datatable">
<tr>

<td colspan="2" class="title">SimpleBasedToken Demo</td>
</tr>

<tr>
<td>SimpleBasedToken Logo</td>
<td> <img src="<%=basePath %>images/simple.png" width="124px" height="124px"/></td>
</tr>
<tr>
<td>UserName</td>
<td><%=parseToken[0]%></td>
</tr>
<tr>
<td>Authentication at Time</td>
<td><%=parseToken[1]%></td>
</tr>
</table>
</div>
</body>
</html>

基于JSON令牌

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page language="java" import="org.maxkey.client.tokenbase.*"%>
<%@ page language="java" import="org.maxkey.client.crypto.*"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

String token =request.getParameter("token");
System.out.println("token : "+token);
String tokenString=TokenUtils.decode(token, "lEWhDLTo", ReciprocalUtils.Algorithm.DES);
Map tokenMap=TokenUtils.parseJsonBasedToken(tokenString);

%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>JsonBasedToken Demo</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="JsonBasedToken Demo">
<link rel="shortcut icon" type="image/x-icon" href="<%=basePath %>/images/favicon.ico"/>
<link type="text/css" rel="stylesheet" href="<%=basePath %>/demo.css"/>

</head>

<body>
<div class="container">
<table class="datatable">
<tr>

<td colspan="2" class="title">JsonBasedToken Demo</td>
</tr>

<tr>
<td>JsonBasedToken Logo</td>
<td> <img src="<%=basePath %>images/json.png" width="124px" height="124px"/></td>
</tr>
<tr>
<td>UID</td>
<td><%=tokenMap.get("uid") %></td>
</tr>
<tr>
<td>UserName</td>
<td><%=tokenMap.get("username") %></td>
</tr>
<tr>
<td>Department</td>
<td><%=tokenMap.get("department") %></td>
</tr>
<tr>
<td>Email</td>
<td><%=tokenMap.get("email") %></td>
</tr>
<tr>
<td>Authentication at Time</td>
<td><%=tokenMap.get("at")%></td>
</tr>
<tr>
<td>Expires</td>
<td><%=tokenMap.get("expires")%></td>
</tr>
</table>
</div>
</body>
</html>

基于LTPA JSON(COOKIE JSON)令牌

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page language="java" import="org.maxkey.client.ltpa.*"%>
<%@ page language="java" import="org.maxkey.client.crypto.*"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

String ltpaVaule=LtpaUtils.readLtpa(request, "maxkey.top", "ltpa");
System.out.println("============ ltpaVaule "+ltpaVaule);
Map tokenMap=null;
if(ltpaVaule!=null){
String ltpaString=LtpaUtils.decode(ltpaVaule, "k1tk41Ng", ReciprocalUtils.Algorithm.DES);
tokenMap=LtpaUtils.parseLtpaJson(ltpaString);
}
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>LTPA Demo</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="LTPA Demo">
<link rel="shortcut icon" type="image/x-icon" href="<%=basePath %>/images/favicon.ico"/>
<link type="text/css" rel="stylesheet" href="<%=basePath %>/demo.css"/>

</head>

<body>
<div class="container">
<table class="datatable">
<tr>

<td colspan="2" class="title">LTPA Demo</td>
</tr>

<tr>
<td>LTPA Logo</td>
<td> <img src="<%=basePath %>images/ltpa.png" width="124px" height="124px"/></td>
</tr>
<tr>
<td>UID</td>
<td><%=tokenMap.get("uid") %></td>
</tr>
<tr>
<td>UserName</td>
<td><%=tokenMap.get("username") %></td>
</tr>
<tr>
<td>Department</td>
<td><%=tokenMap.get("department") %></td>
</tr>
<tr>
<td>Email</td>
<td><%=tokenMap.get("email") %></td>
</tr>
<tr>
<td>Authentication at Time</td>
<td><%=tokenMap.get("at")%></td>
</tr>
<tr>
<td>Expires</td>
<td><%=tokenMap.get("expires")%></td>
</tr>
</table>
</div>
</body>
</html>