如何调用/创建Twitter Card并动态设置元值,而不是从头部获取或声明元数据。 就像下面的代码实现一样。
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生成动态图像/内容。
答案 0 :(得分:0)
Twitter卡要求您的HTML元标记在网页中是静态的-卡搜寻器无法执行Javascript。没有其他方法可以执行此操作,您必须在搜寻器将它们抓取之前将标签插入服务器端。