-1

我已将 facebook 集成到我的 asp.net 网站中,并从后面的代码登录。我拍摄了一个图像按钮并在其 onclick 事件上执行代码。

当我单击注销时,它会从我的网站注销,但仍然在该浏览器中登录 Facebook。谁能告诉我有关 Facebook 注销代码的信息?

登录代码类似于:-

protected void fbimgbtn_Click(object sender, ImageClickEventArgs e)
{
   var root = "http://" + HttpContext.Current.Request.Url.Authority + HttpContext.Current.Request.ApplicationPath;
   string path = "https://www.facebook.com/dialog/oauth?client_id=abcdefgh&redirect_uri=" + root + "/User/Loggingin.aspx";
   path += "&scope=email,publish_stream,user_about_me,user_birthday,user_location,user_hometown,user_work_history&response_type=token";
   Response.Redirect(path);
}

请帮帮我..提前谢谢

4

1 回答 1

1

您将要使用:

https://www.facebook.com/logout.php?access_token=ACCESS_TOKEN&confirm=1&next=REDIRECT

使用所需的适当访问令牌和您的重定向。

否则,如果您使用的是 FB Connect,则只需调用:

FB.Connect.logout(doOnUserLogout()); return(false);
于 2012-10-17T07:06:06.963 回答