1

投稿の「Saysomething...」テキスト部分をFB.uiのフィード機能に変更しようとしています

他のすべてが表示されますが、テキスト領域のテキストは変更されません。

私のコードは以下の通りです:

function postToFeed() {

    // calling the API ...
    var obj = {
      method: 'feed',
      link: 'http://solarhelper.net',
      picture: 'http://solarhelper.net/icon',
      name: 'Find your result using Solar Helper',
      caption: 'Click the link to download the app or get your result online.',
      description: 'I could save ' + incomeYear25 + ' over 25 years and save ' + totalCO2Level + ' tonnes of CO2!',
      message: 'Testing'
    };

    function callback(response) {
        if (response && response.post_id) {
            alert('Post was published.');
        } else {
            alert('Post was not published.');
        }
    }

    FB.ui(obj, callback);

  }

ご協力いただきありがとうございます

4

1 に答える 1

1

残念ながら、そうではなく、ダイアログのこの部分を変更することはできません。

この防止により、イベントのスパムをさらに制限する必要があると思いますか?

于 2012-05-07T00:57:28.550 に答える