I use the PHP PHP SDK to implement authorization via Facebook Connect on my website. It works great, however, when a user logs out, he or she logs out of Facebook. I understand that this is normal behavior when clicking on a link that was generated using the getLogoutUrl () method.
Is it possible that a user can log out of Facebook Connect, but not Facebook? If so, how can this be achieved?
Thanks in advance.
UPD, the kind of response: . For me, what he basically cooked, used Facebook Connect in this way: the user clicks the "Facebook Connect" button; if they are logged into Facebook and authorize the application (the application is required to use Facebook Connect), we get their identifier and set the cookie that he entered. This cookie is not related to Facebook, it was created by my script. When a user wants to log out, we simply delete this cookie.
So, the logon and logout logic is completely based on my script. FB Connect only helps the process by eliminating the need for a password and user login.
source
share