FB帖子的API

时间:2015-04-24 18:50:38

标签: javascript facebook facebook-graph-api facebook-javascript-sdk facebook-share

我应该使用什么API在FB上分享帖子。 我试过用这个

var o = {
    "og:title" : "Test " + new Date(),
    "og:url" : "http://www.123.com/work",
    "og:image": "http://www.clipartlord.com/wp-content/uploads/2014/06/train20.png",
    "og:description" : "This is the best train ever - Toy Train"
}


FB.ui({
  method: 'share_open_graph',
  action_type: 'Share',
    object_type: 'Announcement',
    action_properties: JSON.stringify({
      object:o,   
  })
    }, function(response){
  });

这直接在墙上共享内容,并且用户无法选择(朋友,墙,托管页面等)。我必须使用什么API显示这个观点?

enter image description here

1 个答案:

答案 0 :(得分:0)

这是Share Dialog

的旧版本

当前版本初始化如下:

FB.ui({
  method: 'share',
  href: 'https://developers.facebook.com/docs/',
}, function(response){});

或者您可以手动链接到对话框并将其放入弹出窗口(如屏幕截图所示)