如何在GSP中使用openid4java实现openID

发布于 2024-07-19 00:19:38 字数 422 浏览 6 评论 0原文

如何在gsp中构建openID ReturnURL?

Define a ReturnURL

This is the endpoint where your webapp will receive and process the authentication responses from the OpenID Provider.

    String _returnURL = "http://example.com/openid";

参考:http://code.google.com/p/openid4java/wiki/QuickStart< /a>

How to build openID ReturnURL in gsp??

Define a ReturnURL

This is the endpoint where your webapp will receive and process the authentication responses from the OpenID Provider.

    String _returnURL = "http://example.com/openid";

Reference:http://code.google.com/p/openid4java/wiki/QuickStart

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白龙吟 2024-07-26 00:19:38

假设您在 config.groovy 文件中正确设置了 grails.serverURL,则可以使用将绝对值设置为 true 的 createLink 标记:

grails.serverURL = "http://example.com"

String _returnURL = createLink(controller:'openid', action:'handleReturn', absolute:true)

// _returnURL -> http://example.com/appname/openid/handleReturn

Assuming that you have grails.serverURL set appropriately in your config.groovy file you can use the createLink tag with absolute set to true:

grails.serverURL = "http://example.com"

String _returnURL = createLink(controller:'openid', action:'handleReturn', absolute:true)

// _returnURL -> http://example.com/appname/openid/handleReturn
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文