我的测试环境是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));
当我使用注销功能this.fb.logout()
时,this.fb.logout()
的返回状态为unknown
,这是否意味着我已成功注销?
this.fb.logout().then(response =>{
console.log(response);
});
重新加载页面后,this.fb.getLoginStatus()
的返回状态仍为connected
。
我需要什么步骤才能完成完全注销?