我正在尝试使用国家代码进行公司搜索na.us
。我正在使用linkedin-oauth2 gem。
当我进行公司搜索时,我可以获得一些结果location,us
api.company_search(
keyword:"technologies",
facets: "location,industry",
facet: ["location,us","industry,4"],
start: 0,
count: 1000000
)
但是当使用文档中指定的location,na.us
country 查询时,我得到的结果为零。
api.company_search(
keyword:"technologies",
facets: "location,industry",
facet: ["location,na.us","industry,4"],
start: 0,
count: 1000000
)
我也无法使用company-size 参数进行查询。