Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Active sessions? How? Is there's any use of a browser or something? A session needs a cookie to work. – Nitzan Tomer May 7 '12 at 11:13
Hi! I mean that in the menu "Security" in the account settings within your facebook account, there are several active sessions displayed which have an "unknown device". I want to clear these sessions by logging out, but it doesn't work, yet. I have also tried to add the client_id of my application, but no change. – Fabian Pachner May 7 '12 at 11:18
Oh, I see. I don't think that you have any control over that, the only other way I can think of that you can use to log the user out is by using the FB.logout method of the js sdk, but that's not a good solution for you. You might want to report a bug for this. – Nitzan Tomer May 7 '12 at 11:27
Thanks for the answer! Yes, using javascript isn't a solution for me, as I use Curl to post HTTP requests out of a C++ application. Where could I post this bug? Isn't there another solution to close active sessions? What does FB.logout do internally? – Fabian Pachner May 7 '12 at 12:14
This is the facebook bug system: developers.facebook.com/bugs. As for the FB.logout, you can check the source @ github. Why do you care so much if the session on the facebook end was removed or not? – Nitzan Tomer May 7 '12 at 12:20
show 5 more comments

1 Answer

up vote 0 down vote accepted

I found out what was missing in my code: The lib that was encapsulating libcurl to perform requests on facebook wasn't cleaning up properly.

So the fix was to do curl_easy_cleanup() on my curl handle in the destructor of my session object. Now there are no active sessions on facebook anymore.

While debugging, I found another error in my code concerning curl: If you want to do curl_easy_getinfo(handle, CURLINFO_EFFECTIVE_URL, buf) you MAY NOT delete after the function call as curl holds the buffer. Furthermore, I don't have any memory leaks. Thanks for your help!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.