ユーザーがアプリからログアウトされたが、まだ Facebook にログインしている状況の解決策を見つけようとしており、OAuth 経由でアプリに再度ログインしようとしています。
「auth.login」イベントをリッスンして認証ステータスを確認しています。
この状況でユーザーが facebook-connect ボタンをクリックすると、ポップアップが起動し、自動的に閉じられ、何も起こりません (ユーザーは既に facebook にログインしているため、ログイン イベントは発生しません)。getLoginStatus() チェックを追加すると、ページを開くと、ユーザーが facebook-connect ボタンをクリックしなくても、アプリに自動的にログインされます (それは私が望んでいないことです) 何かアイデアはありますか? ありがとう!
質問する
238 次
1 に答える
1
ユーザーがこの FB イベントに既にログインしている場合の実行コードをここに指定します。
FB.getLoginStatus(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;
} 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.
}
});
于 2012-09-21T14:04:20.597 に答える