FB.logout()之后,重新加载页面状态仍返回“已连接”

时间:2019-08-07 06:21:24

标签: angular facebook

我的测试环境是https:\\localhost:4200上的6号角。

我使用ngx-facebook进行Facebook登录和注销。

加载网页时,this.fb.getLoginStatus()返回登录的默认状态为connected(该状态应该为not_authorized吗?)。

this.fb.getLoginStatus().then(response => {
            console.log(response);
        }).catch((error: any) => console.error(error));

enter image description here

当我使用注销功能this.fb.logout()时,this.fb.logout()的返回状态为unknown,这是否意味着我已成功注销?

this.fb.logout().then(response =>{ 
   console.log(response);
});

enter image description here

重新加载页面后,this.fb.getLoginStatus()的返回状态仍为connected

enter image description here

我需要什么步骤才能完成完全注销?

0 个答案:

没有答案