I am using the Facebook API in a C++ application with libcurl.
Logging in works good, I can retrieve some user information after the user has registered my application.
The problem is, when I want to log the user out via
https://www.facebook.com/logout.php?access_token=RETRIEVED_TOKEN&confirm=1&next=http://www.google.com ,
there are still remaining active sessions in my account settings (security).
I don't want these sessions to remain as the logout should clean these.
How can I smoothly clean those active sessions when logging out?
Do I have to add the APP_ID to the URL?