当我点击内容时正在分享。但图像没有更新。我正在单页网站上申请。
var customshareurlLnkd = 'https://www.linkedin.com/shareArticle?mini=true&url=' + encodeURI(globalConfig.main_site_root + '&title=' + data.content.title +'&source=CMS') ;
detailhtml += ' <a class="sharebtn" href="' + customshareurlLnkd + '" target="_blank">LinkedIn Share</a>';
我试过这个链接:http://beta.beantin.se/clearing-linkedin-link-sharing-preview-cache/,但仍然坚持数小时。任何解决方案 提前谢谢
答案 0 :(得分:0)
要使LinkedIn在用户即将共享时在共享对话框中显示预览数据,您需要在HTML的og:
块中设置<head>
标签,类似于... < / p>
<meta property='og:title' content='Title of the article"/>
<meta property='og:image' content='//media.example.com/ 1234567.jpg"/>
<meta property='og:description' content='Description that will show in the preview"/>
<meta property='og:url' content='//www.example.com/URL of the article" />
来源: LinkedIn Developer Docs: Making Your Website Shareable on LinkedIn 。
即使您正在使用ReactJS或NodeJS之类的东西,您仍然可以将index.html的<head>
块设置为包含适当的og:
标签。
通过将网址与LinkedIn Post Inspector一起使用,可以找出是否正确完成了所有操作。
我还编写了自己的工作演示,该演示使用og:
标签使LinkedIn共享正常工作。签出:www.sortwords.com。