0

atm Facebook API を機能させようとしていますが、oauth でスタックしました

<!DOCTYPE html>
<head>
<script src="http://connect.facebook.net/en_US/all.js"></script>
</head>
<body>
<fb:login-button autologoutlink="true" onlogin="OnRequestPermission();">
</fb:login-button>
<script language="javascript" type="text/javascript">
    FB.init({
        appId: '143655195699763',
        status: true,
        cookie: true,
        xfbml: true
    });
</script>
</body>
</html>

ログインしようとしている限り、エラーが発生します

エラーが発生しました。後でもう一度やり直してください。

何か案が?

また、それを使用すると、同じエラーメッセージが表示されます...おそらく、私のappIDに関係がありますか?

<!DOCTYPE html>
<head>
<script src="http://connect.facebook.net/en_US/all.js"></script>
</head>
<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '395527397147712', // App ID
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });
  };
</script>
<script>
 function fb_publish() {
     FB.ui(
       {
         method: 'stream.publish',
         message: 'Message here.',
         attachment: {
           name: 'Name here',
           caption: 'Caption here.',
           description: (
             'description here'
           ),
           href: 'url here'
         },
         action_links: [
           { text: 'Code', href: 'action url here' }
         ],
         user_prompt_message: 'Personal message here'
       },
       function(response) {
         if (response && response.post_id) {
           alert('Post was published.');
         } else {
           alert('Post was not published.');
         }
       }
     );  
  }

</script>

<input name="" type="button" onClick="fb_publish()">

</body>
</html>
4

1 に答える 1

0

これが原因かどうかはわかりませんが、SDK Docs の例では 2 つの関数があり、1 つは fb.init (持っています) で、もう 1 つは自分自身を呼び出してアタッチしているスクリプトをロードする無名関数です。 DOM に直接、無名関数を介してスクリプトをロードする必要があるかもしれません。コード:

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'YOUR_APP_ID', // App ID
      channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional initialization code here
  };

  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>

#fb-rootまた、IE では SDK が問題を引き起こす可能性があるため、要素を適切に非表示にしてください。詳細はこちら

于 2012-04-24T07:36:49.990 に答える