我已经在我的asp.net网站中集成了facebook并从后面的代码中登录。我在其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);
}
请帮帮我.. 提前致谢
答案 0 :(得分:1)
您将要使用:
https://www.facebook.com/logout.php?access_token=ACCESS_TOKEN&confirm=1&next=REDIRECT
使用所需的适当访问令牌&你的重定向。
否则,如果您使用FB Connect,则只需致电:
FB.Connect.logout(doOnUserLogout()); return(false);