我的应用程序登录是使用Shiro Apache开发的,它工作正常但现在我想要集成该应用程序Gigya的登录任何一个请指定添加的步骤我按照下面提到的官方网站我没有得到/ p>
答案 0 :(得分:1)
最后我找到了我的问题的解决方案 首先打开以下链接 https://platform.gigya.com/login.aspx?ReturnUrl=%2fSite%2fpartners%2fDashboard.aspx 点击申请帐户,然后注册获取API密钥和密钥
从http://developers.gigya.com/030_Server_SDKs/java站点下载GSJavaSDK.jar文件并放入lib文件夹,然后在登录页面(html或xhtml)中添加以下代码
<html>
<head>
<script type="text/javascript" lang="javascript"
src="http://cdn.gigya.com/JS/socialize.js?apikey=2_Y82PzwJ_chSFImHXaIDJClnLyJzmk-VFOavSsaNTzl6m901s_NNxRAS0xJ3bd3_N">
</script>
</head>
<body >
<br />
<p>Please sign in using one of the following providers:</p>
<div id="loginDiv"></div>
<script type="text/javascript">
gigya.socialize.showLoginUI({containerID: "loginDiv", cid:'', width:220, height:60,
redirectURL: "http://wikifiles.gigya.com/Socialize/PostLoginPage.htm",
showTermsLink:false, hideGigyaLink:true // remove 'Terms' and 'Gigya' links
});
</script>
</body>
</html>
然后部署应用程序并运行