作为公司页面的管理员,我如何通过LinkedIn api访问该公司的帖子
我被任命为公司资料的管理员。我创建了一个应用程序,并将公司映射到该应用程序。但奇怪的是我只获得了该应用程序的三个权限:
r_emailaddress
r_liteprofile
w_member_social
但是我读到要获取公司更新,我应该使用UGC Api。当我阅读api文档时,它指出我需要按照以下链接使用r_member_social
或r_organization_social
你们能让我知道如何获得我的应用程序的那些权限吗?
尽管尝试了UGC Api,但是它说我的应用无法访问。
有人可以在这里帮助我获取所需的信息
答案 0 :(得分:1)
为了扩展应用程序权限,您应该请求访问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使用api:
curl -X GET \
-H "Authorization:Bearer token<>" \
'https://api.linkedin.com/v2/shares?q=owners&owners=urn:li:company:{id}'
希望获得帮助