我有一个作为 POC 构建的 MVC 应用程序。当我在 Visual Studio 中运行它时,它连接到 FB,我得到一个访问令牌,一切都运行良好。但是,当我将应用程序发布到 IIS 时,它不再连接。我得到 FB 登录弹出窗口,输入我的用户名和密码,没有任何反应。它似乎没有击中 auth.authResponseChange 更改事件。它没有击中任何警报。这是我正在使用的代码。我不知道该尝试什么。
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.init({
appId: '<myappid>', // App ID
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
FB.Event.subscribe('auth.authResponseChange', function (response) {
alert("Connected!");
if (response.status === 'connected') {
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
alert(accessToken);
window.location = "/Home/FacebookLogin?token=" + response.authResponse.accessToken;
} else if (response.status === 'not_authorized') {
alert("User not Authorized!");
} else {
alert("User not Logged in!");
}
});
};
// Load the SDK Asynchronously
(function (d) {
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) { return; }
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
} (document));
家庭控制器.cs
public class HomeController : Controller
{
public ActionResult Index(string token)
{
return View();
}
[HttpGet]
public ActionResult FacebookLogin(string token)
{
HttpCookie accesstoken = new HttpCookie("accesstoken");
accesstoken.Value = token;
accesstoken.Expires = DateTime.Now.AddMinutes(10d);
Response.Cookies.Add(accesstoken);
return RedirectToAction("Index", "Home", new { token = token });
}
}
有什么建议么?
谢谢,
朗达