如何在没有JS SDK的情况下向LinkedIn API v2和OAuth 2.0发出请求?

时间:2019-01-22 15:26:59

标签: javascript linkedin

我正在尝试直接从浏览器集成LinkedIn v2 OAuth 2.0登录,但是为了解决Ovid跨域问题,我需要使用JS SDK。

但是我在这里看到了: https://engineering.linkedin.com/blog/2018/12/developer-program-updates

从3月1日开始的js SDK无法正常工作

  

SDK:我们的JavaScript和移动软件开发套件(SDK)将停止   工作。开发人员将需要直接从迁移到使用OAuth 2.0   他们的应用。

那么,如果再也没有SDK,该如何使用LinkedIn进行登录? (而且我不能使用任何非免费或非商业性的OAuth库)

并且还试图避免为此使用服务器端

1 个答案:

答案 0 :(得分:0)

这是V1 API的解决方案。我不确定在API的V2中是否可以继续执行此操作。

您可以使用以下参数创建URL,但是imagesummary字段会出现某些问题,如预期那样。

  • page-页面的网址
  • title-页面内容
  • summary-内容摘要
  • source-网站名称

这样构造URL :(内插字符串示例)

https://www.linkedin.com/shareArticle?mini=true&url=${page}&title=${title}&summary=${summary}&source=${source}

如果您控制html元标记,则建议将以下内容应用到共享中,以获取更丰富的体验。

  <meta property="og:title" content="My Shared Article Title" />
  <meta property="og:description" content="Description of shared article" />
  <meta property="og:url" content="http://example.com/my_article.html" />
  <meta property="og:image" content="http://example.com/foo.jpg" />

来源:

Linked In - Share on LinkedIn V1 Docs

TypeScript示例

此示例使用共享链接创建一个新窗口。

let page = this.getPageUrl(true);
let title = this.getTagTitle(true);
let summary = this.getTagDescription(true);
let source = this.getTitle(true);

let tokenLink = `https://www.linkedin.com/shareArticle?mini=true&url=${page}&title=${title}&summary=${summary}&source=${source}`;

window.open(tokenLink);