0

FacebookアプリケーションでユーザーにログインするためにFb.Loginを使用しています。redirect_uri パラメータの可能性はありますか? 成功したログインの後、ユーザーをhttps://www.facebook.com/page/app_33229693355?app_data=codeにリダイレクトしたいと思います。従来のログインでは、redirect_uri パラメータを使用してログイン後にリダイレクトしますが、ここでは?

FB.login(function(response) {
}, {scope: \'publish_stream, photo_upload, user_birthday\'});

次のステップはphpで画像を書くことなので、これが必要です。

4

1 に答える 1

0
  FB.Event.subscribe('auth.login', function () {
      window.location = "http://example.com";
  });

認証ステータスが接続済みに変わると、リダイレクトが発生します。詳細については、このFB.Event.subscribeリンクを確認してください。

ユーザーデータが必要な場合は、

 FB.login(function(response) {
   if (response.authResponse) {
     console.log('Welcome!  Fetching your information.... ');
     FB.api('/me', function(response) {
         // make an ajax call to your php code and pass the name etc ...
         // on success of the ajax call, use window.location to redirect 
        console.log('Good to see you, ' + response.name + '.');
     });
   } else {
     console.log('User cancelled login or did not fully authorize.');
   }
 });
于 2013-01-09T05:14:42.740 に答える