例に従っても同じ問題が発生していましたが、FacebookLogin.ashx ハンドラー ページで、JavaScript コードを保持する元の aspx ページにリダイレクトしていたことが問題であることが判明しました。このコードを入力すると、JavaScript が認証を再度実行したため、無限ループに陥りました。
私がやったことは、ここから JavaScript で永続的なセッション変数を提供する JavaScript のコピーを取得することでした。そして、投稿を送信するコードの周りに条件を配置します。このようにして、FacebookLogin.ashx ハンドラーを 1 回だけヒットし、ループに陥ることはありません。
私が使用しているコードは次のとおりです。
FB.Event.subscribe('auth.authResponseChange', function (response) {
if (response.status === 'connected') {
// the user is logged in and has authenticated your
// app, and response.authResponse supplies
// the user's ID, a valid access token, a signed
// request, and the time the access token
// and signed request each expire
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
if (sessvars.fbauthenticated == undefined) {
sessvars.fbauthenticated = "1";
// Do a post to the server to finish the logon
// This is a form post since we don't want to use AJAX
var form = document.createElement("form");
form.setAttribute("method", 'post');
form.setAttribute("action", '/FacebookLogin.ashx');
var field = document.createElement("input");
field.setAttribute("type", "hidden");
field.setAttribute("name", 'accessToken');
field.setAttribute("value", accessToken);
form.appendChild(field);
document.body.appendChild(form);
form.submit();
}
} else if (response.status === 'not_authorized') {
// the user is logged in to Facebook,
// but has not authenticated your app
} else {
// the user isn't logged in to Facebook.
}
});
if (sessvars.fbauthenticated == undefined) {の条件行により、コードがサーバーに複数回投稿されなくなります。
お役に立てれば