如何使用职位发布 API 在 linkedin 中创建职位?

问题描述 投票:0回答:2

我想创建一个界面,在其中发布工作机会,并且我希望每当我发布工作机会时,它都会通过调用工作发布 API 直接发布在 LinkedIn 中,但我无法弄清楚,任何人都可以帮忙!

我尝试在 LinkedIn 中创建一个应用程序并验证它,并从文档中找到 postman 中的 API 测试,但我不知道其余的!

api postman linkedin-api
2个回答
0
投票
{
  "elements": [
    {
      "integrationContext": "urn:li:organization:{{company_id}}",
      "companyApplyUrl": "https://careers.yourcompany.com",
      "externalJobPostingId": "{{external_job_posting_id}}",
      "jobPostingOperationType": "CREATE",
      "title": "Software Developer in Test",
      "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.\n",
      "listedAt": {{$timestamp}}000,
      "location": "Sunnyvale, California",
      "categories": [
          "rsch"
      ],
      "industries": [
        "urn:li:industry:55"
      ],
      "skillsDescription": "Lorem Ipsum is simply dummy text",
      "companyJobCode" : "company_{{external_job_posting_id}}",
      "employmentStatus": "FULL_TIME",
      "experienceLevel": "EXECUTIVE",
      "trackingPixelUrl": "http://www.trackingpixellocation.com/pixel.gif",
      "listingType": "BASIC"
    }
  ]
}

这是我找到的 JSON 文件


0
投票
  1. 您需要先获得许可才能从 LinkedIn 页面发布职位。
  2. 应用 get-access API 来获取访问令牌。
  3. 之后您需要申请Basic Job或Promoted Jobs API 请遵循以下邮递员示例-

https://www.postman.com/linkedin-developer-apis/workspace/linkedin-talent-solutions/overview

© www.soinside.com 2019 - 2024. All rights reserved.