I am writing one wp8 application that uses facebook C # sdk . Everything is going well, but one thing will not work (and it drives me crazy): I can’t get out of the system.
I tried:
var logoutParameters = new Dictionary<string, object>
{
{ "next", loginUrl }
};
var logoutUrl = _facebookClient.GetLogoutUrl(logoutParameters);
and
var logoutUrl = fb.GetLogoutUrl(new {access_token = "...", next = "...." });
and
https://www.facebook.com/logout.php?next=[redirect_uri]&access_token=[access_token]
Sincerely.
David source
share