我在Node.js的Bluemix中使用单点登录云目录服务
在阅读了docs并从下载的必要模块中浏览了一些像authenticator.js这样的文件之后,我还没有找到任何API文档或功能来注销。
有这样的功能吗?感谢。
答案 0 :(得分:0)
如果您使用Node.js,您只需简单地销毁会话即可。对request.logout()
的调用将破坏会话。
app.get("/logout", function (request, response) {
request.logout();
response.redirect("/");
});