LinkedIn分享代码中'&source=等号后面放什么?

What is Put after the Equal Sign in '&source= in the LinkedIn Share Code?

我正在尝试在我的网络应用程序中创建一个 LinkedIn 共享代码,但我想在实施之前了解代码的每一部分的含义。以此代码为例:

$('.lisharelink').click(function() {
  var shareurl = $(this).data('shareurl');
  window.open('https://www.linkedin.com/shareArticle?mini=true&url=' + escape(shareurl) + '&title=' + document.title + '&source=whatever&target=new', '_blank', 'width=300,height=200');
  return false;
});

'&source= 应该填什么?在哪里可以找到要放在这里的信息?

来源将包括您的域或文章从中共享的任何其他域。这是一个简单的获取变量。

<a href="http://www.linkedin.com/shareArticle?mini=true&url=[webversion]&source=YOURDOMAINHERE">

LinkedIn 共享 URL 不再接受参数 source,如 titlesummary。如果你想现在分享,唯一允许的参数是url,像这样...

https://www.linkedin.com/sharing/share-offsite/?url={url}

来源:Official LinkedIn Sharing Documentation.

但是,如果我们查看 Original LinkedIn Share Documentation 的 archive.org 版本(单击“自定义 URL”选项卡),您会看到他们说...

SOURCE:

description: The url-encoded source of the content (e.g. your website or application name)

maxlength: 200

required: No

因此,它似乎可以是域名或应用程序名称,只要它是 URL 编码且不超过 200 个字符。

当然,LinkedIn API 不再支持它。只需使用 url 即可。如果您想在共享预览中设置其他字段,您需要根据 LinkedIn Developer Docs: Making Your Website Shareable on LinkedIn.

设置 og: 标签