0

訪問者がリンクを共有した後、隠されたdivを明らかにする可能性を何日か探していますが、何も見つかりませんでした。ここでhttp://jsfiddle.net/trefu/qNDJB/9/を試しましたが、機能していません。誰かが私に少し助けてくれませんか。

ダウンロードボックス(それが意味するものは何でも)はここに行きます
window.fbAsyncInit = function() {
    FB.init({
      appId      : '437410746335629', // 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));




FB.init({appId: "437410746335629", status: true, cookie: true});

  function postToFeed() {

    // calling the API ...
    var obj = {
      method: 'feed',
      link: 'https://developers.facebook.com/docs/reference/dialogs/',
      picture: 'http://fbrell.com/f8.jpg',
      name: 'Facebook Dialogs',
      caption: 'Reference Documentation',
      description: 'Using Dialogs to interact with users.'
    };

  function callback(response) {
    if (response && response.post_id) {
        document.getElementById('download_box').style.display = 'block';
    } else {
        alert('You must share your post before you can download.');
    }
}

    FB.ui(obj, callback);
  }
4

1 に答える 1

0

指定したコードは、達成しようとしているもので機能するはずです。問題はアプリケーションの設定にあります。ドメインが Facebook アプリ設定ページで設定されていることを確認してください。具体的には、[アプリ ドメイン] フィールドと [サイト URL] フィールドを更新してください。取得しているフィード ダイアログ エラーが解決されることがわかります。

于 2013-03-23T13:25:23.590 に答える