与 Facebook 分享时显示自定义 属性 值
Display custom property values when sharing with facebook
我设置了以下元标记
og:title Supercompany
og:url https://xxxxx/Business/Grumble/?id=xxxxxxxxxxxxx
og:image https://xxxxxxx/Content/Images/logo4fb.png?23122014
og:type xxxxxx:organization
og:hashtags #xxx #xrfgg #sdsv #vdsdg #vdvdvd
og:description aaaa | cghydgdegezhztt
当我分享上面的内容时,只显示描述。如何显示主题标签?
我正在使用以下分享到 FB。
FB.ui({
method: 'share',
href: linkToShare,
action_type: 'xxxxxx:yyy',
action_properties: JSON.stringify({
organization: linkToShare
})
我无法通过分享解决这个问题,所以我最终将主题标签与描述连接起来,并通过 feed 而不是分享来分享。
FB.ui({
method: 'feed',
link: linkToShare,
description: hashtags
}
hashtags = description + " " + hashtags
我设置了以下元标记
og:title Supercompany
og:url https://xxxxx/Business/Grumble/?id=xxxxxxxxxxxxx
og:image https://xxxxxxx/Content/Images/logo4fb.png?23122014
og:type xxxxxx:organization
og:hashtags #xxx #xrfgg #sdsv #vdsdg #vdvdvd
og:description aaaa | cghydgdegezhztt
当我分享上面的内容时,只显示描述。如何显示主题标签?
我正在使用以下分享到 FB。
FB.ui({
method: 'share',
href: linkToShare,
action_type: 'xxxxxx:yyy',
action_properties: JSON.stringify({
organization: linkToShare
})
我无法通过分享解决这个问题,所以我最终将主题标签与描述连接起来,并通过 feed 而不是分享来分享。
FB.ui({
method: 'feed',
link: linkToShare,
description: hashtags
}
hashtags = description + " " + hashtags