如何使自定义LinkedIn分享按钮(How to make custom linkedin sha

2019-06-24 17:03发布

我需要能够共享功能添加到自定义BUTTOM。 我不感兴趣,与自己的发电机 ,因为我不能改变LinkedIn形象出现。 我想用我自己的形象为LinkedIn分享按钮。

Answer 1:

官方LinkedIn API共享:

https://developer.linkedin.com/docs/share-on-linkedin

阅读使用条款的!

使用实施例链接“定制URL”的方法: http://www.linkedin.com/shareArticle?mini=true&url=https://stackoverflow.com/questions/10713542/how-to-make-custom-linkedin-share-button /10737122&title=How%20to%20make%20custom%20linkedin%20share%20button&summary=some%20summary%20if%20you%20want&source=stackoverflow.com

你只需要使用JavaScript在弹出窗口中打开它或加载它iframe中。 简单的工作 - 这就是我一直在寻找!

编辑:视频连接到一个帖子:

我查了一下,你不能真正嵌入任何视频,LinkedIn后,唯一的选择是将链接视频本身添加到页面。

您可以通过将YT链接到实现它url PARAM:

https://www.linkedin.com/shareArticle?mini=true&url=https://www.youtube.com/watch?v=SBi92AOSW2E

如果指定了summarytitle ,然后LinkedIn将停止视频,如拉:

https://www.linkedin.com/shareArticle?mini=true&summary=youtube&title=f1&url=https://www.youtube.com/watch?v=SBi92AOSW2E

它的工作正好与Vimeo的相同,可能会为网站工作。 希望这将有助于。

编辑2:拉图像后:

当你打开上面的链接,你会看到LinkedIn加载一些图像与传递的URL(以及可选的标题和摘要)一起。

LinkedIn会自动完成,你可以在这里读到它: https://developer.linkedin.com/docs/share-on-linkedin#opengraph

不过,因为它说这很有趣:

如果Open Graph的标签都存在,LinkedIn的履带将不必依赖于它自己的分析,以确定哪些内容会被共享,提高的可能性,这是共享的信息是你打算什么。

它告诉我,即使开放图谱信息还没有安装,LinkedIn可以拉基于自己的分析这些数据。 和YouTube的情况下,它似乎是这样,因为我找不到添加到YouTube网页任何Open Graph的标签。



Answer 2:

您可以使用LinkedIn ShareArticle URL,它可以有参数自己分享按钮:

https://www.linkedin.com/shareArticle?mini=true&url={articleUrl}&title={articleTitle}&summary={articleSummary}&source={articleSource}

你可以找到的文件在这里 ,只要选择“自定义URL”可查看详细信息。



Answer 3:

随着2017年4月,这是用于共享当前的网址:

https://www.linkedin.com/shareArticle?mini=true&url=http://developer.linkedin.com&title=LinkedIn%20Developer%20Network&摘要=我%20favorite%20developer%20program&源= LinkedIn



Answer 4:

LinkedIn最近修改自己的网站,所以有一吨旧链接只是重定向到开发者支持主页。 下面是一个更新的链接到相关页面上LinkedIn的支持网站(如02月16日的,2015年): https://developer.linkedin.com/docs/share-on-linkedin



Answer 5:

它最好使用自定义网址的方法。 而其最简单的。 发现这个一个。 它会打开一个弹出窗口,你不需要因为任何BS认证的问题w_share和所有。

<a href="https://www.linkedin.com/shareArticle?mini=true&url=http://chillyfacts.com/create-linkedin-share-button-on-website-webpages&title=Create LinkedIn Share button on Website Webpages&summary=chillyfacts.com&source=Chillyfacts" onclick="window.open(this.href, 'mywin',
'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" ><img src="http://chillyfacts.com/wp-content/uploads/2017/06/LinkedIN.gif" alt="" width="54" height="20" /></a>

只要改变url您自己的网址。 这里是链接http://chillyfacts.com/create-linkedin-share-button-on-website-webpages/



Answer 6:

这对我的作品:

https://www.linkedin.com/shareArticle?mini=true&url=articleUrl&title=YourarticleTitle&summary=YourarticleSummary&source=YourarticleSource

您可以与您的内容替换它使用这个链接。 它的工作原理100%。



Answer 7:

现在,API更新和以前的API将2019年3月1日就被弃用。

要创建LinkedIn自定义共享按钮,你需要现在POST调用。 你可以阅读最新的文档在这里这样做。



Answer 8:

您可以自定义这样的标准LinkedIn按钮,页面加载后:

$(".IN-widget span:first-of-type").css({
                'border': '2px solid #DCDCDC',
                '-webkit-border-radius': '3px',
                '-moz-border-radius': '3px',
                'border-radius': '3px'
                });


文章来源: How to make custom linkedin share button