我已将 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);
}
请帮帮我..提前谢谢