1

ダイアログ フィード構文で「to」フィールドを指定することにより、特定の友人に投稿することができます。

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

function postToFeed() {
  // calling the API ...
  var obj = {
    method: 'feed',
    redirect_uri: [url],
    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.',
    to:[fb id]
  };

  function callback(response) {
    document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
  }

  FB.ui(obj, callback);
}

しかし、投稿先の友人をユーザーが選択できるテキスト ボックスをどのように作成すればよいでしょうか。または、別の方法はありますか?

4

0 に答える 0