How to log out from facebook in my site

后端 未结 2 1757
傲寒
傲寒 2021-01-14 05:37

I\'m using https://github.com/pocesar/facebook-kohana for facebook login. I have problem with facebook logout. It doesn\'t destroy facebook session. I\'ve tried

2条回答
  •  长情又很酷
    2021-01-14 05:54

    You can get facebook logout url using facebook-php-sdk API. When user will click on that url he will be offline from his facebook account.

    if ($user) {
       $logoutUrl = $facebook->getLogoutUrl();
    } else {
       $loginUrl = $facebook->getLoginUrl();
    }
    

    For more info you can check this url.

    https://github.com/facebookarchive/facebook-php-sdk

提交回复
热议问题