linkedin 注销问题

发布于 2024-10-14 04:59:46 字数 318 浏览 4 评论 0原文

我使用 linkedin 连接登录到我的应用程序,但注销时我注销应用程序而不是 linkedin。我希望用户注销 linkedin 和我的应用程序

Facebook 提供了与以下相同的选项

http://m.facebook.com/logout.php?confirm=1&next={domain url}

如果有人知道 linkedin 的相同情况,那将对我有很大帮助。

提前致谢

I am logged into my application with linkedin connect, but on logout i logs out of the application and not linkedin. I want user to log out of both linkedin and my application

Facebook have provide an option for the same as below

http://m.facebook.com/logout.php?confirm=1&next={domain url}

IF any one know the same thing with linkedin, It will help me a lot.

Thanks in advance

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

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

发布评论

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

评论(1

花辞树 2024-10-21 04:59:46

我已经因为从 linkedin 注销而陷入麻烦了一段时间,但终于找到了出路。我已将注销链接代码放在这里:

<a onclick='IN.User.logout(
function redirect()
{
window.location = "logout.php";
}
);'
href="javascript:void(0)">
Log Me Out
</a>

注销按钮的 onClick,我调用了“IN.User.logout”,在其回调中,我已将控制权交给了重定向到注销脚本的函数(在此为 logout.php)情况)我将用户从系统中注销。

我认为这应该对这里的大多数人有帮助。

I have been in trouble for this log out from linkedin for quite sometime but finally found a way out. I have placed my log out link code here:

<a onclick='IN.User.logout(
function redirect()
{
window.location = "logout.php";
}
);'
href="javascript:void(0)">
Log Me Out
</a>

onClick of the logout button, I have called "IN.User.logout" and on its callback, I have given control to the function which redirects to log out script (logout.php in this case) where I log the user out of my system.

I think this should help most of people here.

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