我有一个linkedin公司页面 . 我试图通过Linkedin Rest API发布对该页面已经存在的帖子的评论 . 以下是请求详细信息:

HTTP方法:POST

网址:https://api.linkedin.com/v2/socialActions/urn:li:activity / comments

Headers :授权,内容类型

身体 :

{"actor": "urn:li:organizationBrand:<org id>",
"message": {
    "attributes": [],
    "text": "This is a comment"
}}

上面的请求给我发了以下错误:

{"message": "com.linkedin.restli.client.RestLiResponseException: Response status 500, serviceErrorMessage: Error creating comment",
"status": 500}

同样的请求适用于另一个linkedin公司页面 . 能帮我找到问题所在吗?