作为公司页面的管理员,我如何通过LinkedIn api访问该公司的帖子?
我被任命为公司档案的管理员。我创建了一个应用程序,并将我的公司映射到该应用程序。但令人惊讶的是,我只获得了这款应用的三个权限:
r_emailaddress
r_liteprofile
w_member_social但我读到要获取公司更新,我应该使用UGC Api。当我阅读api文档时,它指出我需要具有r_member_social或r_organization_social,如以下链接所示
你们能告诉我如何才能获得对我的应用程序的权限吗?
我甚至尝试过UGC Api,但它显示我的应用程序无法访问。
有没有人可以帮我获取所需的信息
发布于 2019-05-24 20:45:10
为了扩展应用程序权限,您应该请求访问Marketing Developer Platform。在LinkedIn Developer页面的Products下,您应该添加Marketing Developer Platform。当他们授予你新产品时,新的权限应该改进如下:
r_emailaddress
w_share
r_ads
w_organization_social
rw_ads
r_basicprofile
r_liteprofile
r_ads_reporting
r_organization_social
rw_company_admin
rw_organization_admin
w_member_social此外,您还可以使用公司id通过接口进行Retrieve Shares:
curl -X GET \
-H "Authorization:Bearer token<>" \
'https://api.linkedin.com/v2/shares?q=owners&owners=urn:li:company:{id}'希望这对你有所帮助
https://stackoverflow.com/questions/56291683
复制相似问题