简体   繁体   English

使用公司名称查找确切的linkedin url

[英]Use company name to find exact linkedin url

Let's say I have 10 company names.假设我有 10 个公司名称。 How to find their "nearly-exact" linkedin url?如何在 url 中找到他们的“几乎精确”链接?

ex.前任。 A company is named "ABC Corp", its' linkedin url might be "https://www.linkedin.com/company/abc-corp" but it's not accurate.一家公司名为“ABC Corp”,其linkedin url 可能是“https://www.linkedin.com/company/abc-corp”,但不准确。

There's a way to improve the precision by use google to search linkedin+company name to find the result, but the error rate is still high.有一种提高精度的方法,就是用google搜索linkedin+公司名称来查找结果,但是错误率仍然很高。

is there any better solution?有没有更好的解决方案?

The link you'd fetch would be https://www.linkedin.com/search/results/all/?keywords=COMPANY_NAME_HERE which searches for the company name.您要获取的链接是https://www.linkedin.com/search/results/all/?keywords=COMPANY_NAME_HERE搜索公司名称。

Then, you can use beautiful soup to scrape the first result which is usually the company you are looking for然后,你可以用美汤刮出第一个结果,通常是你要找的公司

To do this via web/iOS/Android.通过 web/iOS/Android 执行此操作。

https://www.linkedin.com/help/linkedin/answer/3881/find-an-organization-s-page-on-linkedin?lang=en https://www.linkedin.com/help/linkedin/answer/3881/find-an-organization-s-page-on-linkedin?lang=en

  1. Type the company, university, or high school name into the Search bar at the top of your LinkedIn homepage.在 LinkedIn 主页顶部的搜索栏中输入公司、大学或高中名称。
  2. Click Companies or Schools at the top of the search results page.单击搜索结果页面顶部的公司或学校。
  3. Click Locations, Industry, or Company size to filter the results for a company.单击位置、行业或公司规模以筛选公司的结果。 (optional) (可选的)

Click on the correct organization name in the results list that appears.在出现的结果列表中单击正确的组织名称。

To do this via the API通过 API 做到这一点

I'm assuming this is what you're looking for.我假设这就是你要找的。

LinkedIn marketing API provides an Organization Search API for this use case. LinkedIn 营销 API 为此用例提供了组织搜索 API。 You can search using just keywords by calling the search API.您可以通过调用搜索 API 仅使用关键字进行搜索。

eg:例如:

GET https://api.linkedin.com/v2/search?q=companiesV2&baseSearchParams.keywords=LinkedIn%20Corporation

However, if you happen to know information like the company's region/industry/company size etc. you can specify those as facets (think of these like filters)但是,如果您碰巧知道公司的地区/行业/公司规模等信息,您可以将它们指定为facets (将这些视为过滤器)

eg:例如:

GET https://api.linkedin.com/v2/search?q=companiesV2&baseSearchParams.keywords=LinkedIn%20Corporation&companySearchParams.facetIndustry%5B0%5D=6&companySearchParams.facetCompanySize%5B0%5D=H&companySearchParams.facetCompanyCountryRegion%5B0%5D=us:84

Documentation: https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/organizations/organization-search文档: https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/organizations/organization-search

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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