Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 asp.net 应用程序中使用 openid。对于 Linkedin,我使用了 javascript api 我可以登录我的网站,但我想知道如何从我的网站注销,这也会自动将我从linkedin 注销。请提出一些解决方案。
谢谢
该协议不允许您将用户从 LinkedIn 中注销。您只能将用户从您自己的站点中注销。这是设计使然。
Javascript函数
function logout() { IN.User.logout(function () { window.location.href = '/logout.aspx'; }); }
适用于注销,但是当我们离开理想的网站一段时间后,它就不起作用了。