1

このサイトの多くの投稿に目を通しましたが、それでも Facebook のログインとリダイレクトを機能させることができませんでした。ユーザーが Web ページのボタンを押して Facebook 経由でログインすると、自動的に別の Web ページにリダイレクトし、URL 経由で電子メールとパスワードを渡したいと考えています。残念ながら、彼らがログインしたときに、ページを手動でリロードして、Web ページを更新してリダイレクト ページに移動する必要があるという点までしか機能しませんでした。誰かがこれを行う方法についてコードを投稿できるかどうか疑問に思っていましたか? いろいろ動かしてみました。

<?php

 //uses the PHP SDK.  Download from https://github.com/facebook/php-sdk
 require 'facebook.php';

define('YOUR_APP_ID', 'xxxx');

$facebook = new Facebook(array(
    'appId'  => 'xxxx',
   'secret' => 'xxxx',
  ));   

?>

<div id="fb-root"></div>
<div id="user-info"></div>
     <div class="fb-login-button" style="position:absolute;top:800px;">Login with Facebook</div>




<script>

    window.fbAsyncInit = function() {
      FB.init({ appId: 'xxxx', 
            status: true, 
            cookie: true,
            xfbml: true,
            oauth: true});

  function updateButton(response) {
    var button = document.getElementById('fb-auth');

    if (response.authResponse) {
      //user is already logged in and connected
      var userInfo = document.getElementById('user-info');
      FB.api('/me', function(response) {
        userInfo.innerHTML = '<img src="https://graph.facebook.com/' 
      + response.id + '/picture">' + response.email;
        button.innerHTML = 'Logout';

             });
      button.onclick = function() {
        FB.logout(function(response) {
          var userInfo = document.getElementById('user-info');
          userInfo.innerHTML="";
    });
      };






} 



    else {
      //user is not connected to your app or logged out
      button.innerHTML = 'Login';
      button.onclick = function() {
        FB.login(function(response) {
      if (response.authResponse) {
            FB.api('/me', function(response) {
          var userInfo = document.getElementById('user-info');
          userInfo.innerHTML = 
                '<img src="https://graph.facebook.com/' 
            + response.id + '/picture" style="margin-right:5px"/>' 
            + response.name;


        });    
          } else {
            //user cancelled login or did not grant authorization
          }
        }, {scope:'email'});    
      }
    }
  }


  // run once with current status and whenever the status changes
  FB.getLoginStatus(updateButton);
  FB.Event.subscribe('auth.statusChange', updateButton);    
};

(function() {
  var e = document.createElement('script'); e.async = true;
  e.src = document.location.protocol 
    + '//connect.facebook.net/en_US/all.js';
  document.getElementById('fb-root').appendChild(e);
}());





</script>

<?php

   $uid = $facebook->getUser();
    if($uid != 0) {
        header("Location: signup.php");
      }   

    ?>
4

1 に答える 1

-1

主にheader('Location')facebookアプリでの使用では動作しません。

残りのコードは機能していると想定しているため、必要な変更は次のとおりです。

$uid = $facebook->getUser();
if($uid != 0) {
    echo("<script> top.location.href='your-login-url'</script>");
    return;
}

お役に立てれば

于 2012-06-10T14:37:43.740 に答える