在 LinkedIn 公司页面上发布

Publish on LinkedIn company page

所以我尝试使用 ugcPosts API 在公司页面上发布 post。 当我进入个人帐户时,效果很好,但当我进入公司页面时,我得到状态“201 已创建”,但它没有出现在公司页面上。

我正在使用测试公司页面https://www.linkedin.com/company/devtestco/

我通过身份验证的用户拥有权限:

- r_liteprofile
- r_emailaddress
- w_member_social
- w_organization_social
- r_organization_social

我打电话给:

https://api.linkedin.com/v2/ugcPosts

与 body

{
    "author": "urn:li:organization:2414183",
    "lifecycleState": "PUBLISHED",
    "specificContent": {
        "com.linkedin.ugc.ShareContent": {
            "shareCommentary": {
                "text": "A share comment"
            },
            "shareMediaCategory": "ARTICLE",
            "media": [
                {
                    "status": "READY",
                    "description": {
                        "text": "A description"
                    },
                    "originalUrl": "https://linkedin.com/",
                    "title": {
                        "text": "A title"
                    }
                }
            ]
        }
    },
    "visibility": {
        "com.linkedin.ugc.MemberNetworkVisibility": "PUBLIC"
    }
}

我是不是做错了什么? https://www.linkedin.com/company/devtestco/ 测试公司页面有问题吗?是否有其他公司页面用于测试?

就像我说的,我收到了 "Created" 回复,但它在哪里? devtestco 页面根本没有任何 post,我觉得很奇怪,因为我不可能是唯一一个使用它的人。

所以我用 "real" 公司页面进行了测试并且它有效,所以页面 https://www.linkedin.com/company/devtestco/

似乎有些奇怪