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?