如何调用/创建 Twitter Card 并动态设置元值,而不是从 head 部分获取或声明元数据。就像下面的代码实现一样。
FB.ui({
method: 'share_open_graph',
action_type:'og.shares',
action_properties: JSON.stringify({
'og-title':'https://developers.facebook.com/docs/',
'og-image':'image-url'
})
})
我们如何使用 Twitter Card API 实现这一点?*注意:我正在尝试通过图像预览实现 twitter 共享,并根据所选的 id 使用动态图像/内容。