如何在Facebook中重命名“对象” share_open_graph

时间:2018-09-03 13:52:29

标签: javascript facebook facebook-graph-api facebook-opengraph

我尝试使用开放图谱API为Facebook创建一个共享按钮。

我的功能:

FB.ui({
    method: 'share_open_graph',
    action_type: 'og.likes',
    action_properties: JSON.stringify({
        object: {
            'og:title': 'Custom Title',
            'og:url': 'https://site.url',
            'og:description': 'Customt Description',
            'og:image': 'Dynamic Image',
            'og:og:image:width': '2400',
            'og:image:height': '1260',
            'fb:app_id': 'APP_ID',    
            },
    })

如果我这样使用它,则帖子文本为:

  

John Doe喜欢对象von MyApp

如何将本文中的“对象”重命名/删除为自定义名称或类似的名称:site, link等...

另一个问题是,此帖子的图片始终是小方形图片,而不是大图片。我在2400x1630的服务器上渲染图像。

感谢您的帮助!

0 个答案:

没有答案