我可以将 jQuery OpenID 插件与 LightopenID 一起使用吗?

发布于 2024-12-11 08:36:06 字数 417 浏览 0 评论 0原文

我正在使用 LightopenID,一切正常。但我想要一个漂亮的 openID 选择器,并且我正在尝试 jQuery OpenID 它正在工作,但是当它必须调用 LightopenID 时我迷失了。我认为是这一行:

<form class="openid" method="post" action="/Login.xhtml?ReturnUrl="> 

不是吗?有什么想法吗?

我可以使用其他选择器吗?请问有代码示例吗? 提前致谢!

I'm using LightopenID and all works fine. But I want a pretty openID selector, and I was trying jQuery OpenID
It's working, but I'm lost when it must call to LightopenID. I think is this line:

<form class="openid" method="post" action="/Login.xhtml?ReturnUrl="> 

isn't it? Any idea, please?

Can I use another selector? Any code example, please?
Thanks in advance!

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

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

发布评论

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

评论(1

风蛊 2024-12-18 08:36:06

就是你说的那条线。您必须设置表单的操作,以便它指向将处理您的身份验证的文件。与 LightOpenID 捆绑在一起的 example.php 就是这样的文件之一。

我采取了以下步骤来测试它:

  1. 下载并提取 LightOpenID 到 /openid (以便 http ://localhost/openid/example.php 将指向示例)
  2. 下载并提取 jQuery OpenID 插件,因此它位于 /openid/jQueryOpenIdPlugin
  3. 将操作更改为'../example.php' 在'/openid/jQueryOpenIdPlugin/Login.xhtml'中
  4. 打开 http://localhost/openid/jQueryOpenIdPlugin/Login.xhtml
  5. 输入 openid,然后单击“提交”。
  6. 已重定向到身份验证页面 - 现在我确信它可以工作。

It is the line you've mentioned. You have to set the form's action so that it points to a file that will handle your authentication. One such file is the example.php bundled with LightOpenID.

I took the following steps to test it:

  1. Downloaded and extracted LightOpenID to /openid ( so that http://localhost/openid/example.php would point at the example)
  2. Downloaded and extracted jQuery OpenID plugin, so it's in /openid/jQueryOpenIdPlugin
  3. Changed the action to '../example.php' in '/openid/jQueryOpenIdPlugin/Login.xhtml'
  4. Opened http://localhost/openid/jQueryOpenIdPlugin/Login.xhtml
  5. Entered an openid, then clicked submit.
  6. Been redirected to the authentication page -- now I'm sure it works.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文