我正在尝试使用国家/地区代码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
时,is specified in the docs然后我得到零结果。
api.company_search(
keyword:"technologies",
facets: "location,industry",
facet: ["location,na.us","industry,4"],
start: 0,
count: 1000000
)
此外,我无法使用company-size parameter进行查询。