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 'm using the following snippet to logout from Facebook (ASP.NET MVC 3, Razor):

return  Redirect("https://www.facebook.com/logout.php?"
                  + "next=" + facebookLogoffUrl
                  + "&access_token=" + accessToken);

If issued into the browser's address bar it works fine, but not through the application.

On Facebook the setting for my app is http://localhost:50489.

What am i doing wrong?

share|improve this question
Could you give a little more information please. Such as: are you running this from localhost:50489 on your development PC and these settings are also the same in Facebook. Also take a look at: stackoverflow.com/questions/5133075/… – Adam Mar 25 '12 at 7:42
The only setting on FB is the site URL which is set to localhost:50489. There is NO other setting set! ...and yes they are the same as on my dev PC. – Savvas Sopiadis Mar 25 '12 at 7:48
and could you please tell me what actually happens when it isn't working and what happens when it does. – Adam Mar 25 '12 at 8:01
OK. Now i setup also the domain setting on FB to localhost. The result is the same! I can verify in Fiddler that the correct URL is posted to FB. If i issue this on the browsers bar it works fine! – Savvas Sopiadis Mar 25 '12 at 8:02
It doesn't work means the following: after having executed the above snippet i'm visiting explicitly facebook.com and the users page gets shown up. By logging off i understand that the FB login screen should show up... or not? .. bit confused! – Savvas Sopiadis Mar 25 '12 at 8:05
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.