我在角色应用程序中使用此Facebook模块(https://www.npmjs.com/package/ngx-facebook)。我可以正常登录,并已将该模块用于多个Facebook功能。但我似乎无法使用注销功能。我的注销功能如下所示。
logout(){
console.log("logging out of facebook");
this.fb.logout()
.then((res)=>{console.log(res)})
this.authService.setLoggedIn(false);
this.router.navigate(["/admin/login"]);
}
运行该功能时,控制台看起来像这样。
但我的应用程序未注销,我的Facebook个人资料也未注销。我想通过退出来断开应用程序与我的Facebook个人资料的连接,我该如何实现?
答案 0 :(得分:0)
安装插件
http://ngcordova.com/docs/plugins/facebook/
然后注销函数调用并清除本地存储