如何从我是页面管理员的 LinkedIn 获取组织的帖子

How to get posts of an organization from LinkedIn where Im the admin of the page

作为公司页面的管理员,我如何通过 LinkedIn 访问该公司的帖子 api

我被任命为公司资料的管理员。我创建了一个应用程序并将我的公司映射到该应用程序。但奇怪的是我刚刚获得了应用程序的三个权限:

r_emailaddress
r_liteprofile
w_member_social

但我读到要获取公司更新,我应该使用 UGC Api。当我阅读 api 文档时,它指出我需要 r_member_socialr_organization_social 按照下面的 link

https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api

你们能告诉我如何获得对我的应用程序的这些权限吗?

尽管我尝试使用 UGC Api,但它说我的应用程序没有访问权限。

谁能帮我弄到需要的资料

为了扩展应用权限,您应该请求访问 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

此外,您可以 Retrieve Shares 与 api 使用公司 ID:

curl  -X GET \
   -H "Authorization:Bearer token<>" \
 'https://api.linkedin.com/v2/shares?q=owners&owners=urn:li:company:{id}'

希望对您有所帮助