我想用自己的图片做LinkedIn的分享按钮。我一直在关注这个之前帖子的信息。
这里指出,。要为LinkedIn创建一个自定义的分享按钮,你现在需要进行POST调用。
我已经阅读了Linkedin的文档,但是我不明白如何将POST调用与我的HTML页面相结合。谁能帮我解释一下?
我最初尝试使用这个URL,我知道现在LinkedIn不支持这个URL。
它部分地工作了! 图片、标题和摘要都不完整,或者不是我在URL中指定的内容,但是如果我点击LinkedIn帖子,它确实链接到了正确的页面。
有什么办法可以让这个工作?
非常感谢
让我们来快速浏览一下。LinkedIn官方 "让你的网站在LinkedIn上可分享 "文档. URL格式应该是...
https://www.linkedin.com/sharing/share-offsite/?url={url}
并让它使用其他参数,如 image
等,设置你的 og:
在您分享的链接的HTML中加入标签,就像这样......
<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" />