简体   繁体   中英

Does Linkedin provide JavaScript API for Company Search?

I'm writing a widget solely in JavaScript and trying to avoid any server-side scripting.

Thanks.

There are no pre-built Company Search methods for the JavaScript API . You'd need to make the company search request via the IN.API.Raw() method, something like:

IN.API.Raw('/company-search?keywords=LinkedIn')
  .result(function(value) {
    alert(JSON.stringify(value));
  })
  .error(function(error) {
    alert(JSON.stringify(error));
  });

Yes there is.

Here is the documentation for Company Search; Doc

Link to API

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM