Please help critical deadline is here.
I'm having horrible times with trying to get logout to work with facebook. I have read lots of articles and put my time in trying to figure out what to do but nothing seems to work. If you find another stackoverflow or internet source stating they fixed it, I have probably already attempted that way and failed. I have read that facebook has made a change to their logout in the pass couple of weeks, so I'm not sure what to believe.
So this is what I currently have:
var oauth = new Facebook.FacebookClient(AccessToken);
var logoutParameters = new Dictionary<string, object>
{
{"access_token", AccessToken},
{"next", "https://www.facebook.com"}
};
var logoutUrl = oauth.GetLogoutUrl(logoutParameters);
browser.Navigate(new Uri(logoutUrl.AbsoluteUri));
I have tried a hold bunch of of differ ways on the parameters even totally removing the parameters and nothing works.
When it navigates, it just takes me to the user's homepage.