代码之家  ›  专栏  ›  技术社区  ›  Jaco Pretorius

公司目录的LinkedIn API

  •  11
  • Jaco Pretorius  · 技术社区  · 14 年前

    我试着用 LinkedIn API 搜索 公司 ,不是 . 我特别不想要只有用户的公司。

    here here

    我基本上只是在寻找一个简单的搜索界面,类似于LinkedIn主页上的情况。我还想以某种方式显示返回的信息。

    我计划在Ruby中实现这个功能,但这并不是我真正关心的。

    3 回复  |  直到 14 年前
        1
  •  15
  •   Eric Mason    9 年前

    更新: https://developer-programs.linkedin.com/documents/company-search

    官方API似乎没有这个特性。不过,它们确实有一个URL,您可以在其中传递搜索公司的信息,它将返回一个JSON响应,其中包含公司名称、徽标URL、员工人数以及指向公司简介的链接。

    http://www.linkedin.com/ta/federator?query=citr&types=company,group,sitefeature
    

    它回来了

    {
       "sitefeature":{
          "resultList":[
    
          ]
       },
       "company":{
          "resultList":[
             {
                "id":"1195260",
                "headLine":"<strong>CiTR<\/strong> SHINDIG",
                "displayName":"CiTR SHINDIG",
                "subLine":"Entertainment; 1-10 employees",
                "url":"http://www.linkedin.com/companies/1195260"
             },
             {
                "id":"2641",
                "headLine":"<strong>Citr<\/strong>ix Systems",
                "imageUrl":"http://media03.linkedin.com/mpr/mpr/shrink_40_40/p/3/000/043/32b/0076ade.png",
                "displayName":"Citrix Systems",
                "subLine":"Computer Software; 1001-5000 employees",
                "url":"http://www.linkedin.com/companies/2641"
             },
             {
                "id":"7659",
                "headLine":"<strong>Citr<\/strong>oen",
                "imageUrl":"http://media01.linkedin.com/mpr/mpr/shrink_40_40/p/3/000/01d/3d0/277c145.png",
                "displayName":"Citroen",
                "subLine":"Automotive; 10,001+ employees",
                "url":"http://www.linkedin.com/companies/7659"
             },
             {
                "id":"260214",
                "headLine":"PSA Peugeot <strong>Citr<\/strong>oën",
                "imageUrl":"http://media02.linkedin.com/mpr/mpr/shrink_40_40/p/2/000/021/0b7/07c4193.png",
                "displayName":"PSA Peugeot Citroën",
                "subLine":"Automotive; 10,001+ employees",
                "url":"http://www.linkedin.com/companies/260214"
             },
    ...
    
        2
  •  4
  •   Kirsten Jones    13 年前

    https://developer.linkedin.com/documents/company-search

    LinkedIn有几个公司API,这只是其中之一。请随意阅读文档,看看有什么可用的。

        3
  •  1
  •   Bob Belderbos    13 年前

    这似乎是Linkedin API中要求的功能( https://developer.linkedin.com/thread/2970 )