LinkedIn API:列出 UGC 帖子时出现服务器错误
LinkedIn API: Server error while listing UGC posts
我在尝试列出组织的所有 UGC 帖子时遇到服务器错误。
我已按照那里的 API 文档进行操作:https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#find-ugc-posts-by-authors
我正在对此 URL 执行 GET 请求:https://api.linkedin.com/v2/ugcPosts?q=authors&authors=List(urn%3Ali%3Aorganization%3A6645672)
我添加了具有正确值的授权 header。
应返回 UGC 帖子,但我却收到以下 API 响应:
{
'serviceErrorCode': 0,
'message': 'java.lang.ClassCastException',
'status': 500
}
下面是回复 headers:
{
'X-LI-ResponseOrigin': 'RGW',
'X-Restli-Gateway-Error': 'true',
'Content-Type': 'application/json',
'Content-Length': '76',
'X-Li-Fabric': 'prod-lor1',
'Connection': 'keep-alive',
'X-Li-Pop': 'prod-efr5',
'X-LI-Proto': 'http/1.1',
'X-LI-UUID': 'lsI6Y1fvpRUgJP1JhSsAAA==',
'Set-Cookie': 'lidc="b=OB36:g=1813:u=339:i=1559916004:t=1559978523:s=AQE_uyAgsS2aohUoPQqxLGIDiYC9Gpfr"',
'X-LI-Route-Key': '"b=OB36:g=1813:u=339:i=1559916004:t=1559978523:s=AQE_uyAgsS2aohUoPQqxLGIDiYC9Gpfr"'
}
出于隐私原因,我不会向您提供访问令牌,但您的团队将拥有我刚刚在上面粘贴的响应 header 中显示的请求 ID 的所有详细信息。
感谢社区或 LinkedIn 支持团队帮助我调试此错误。
此致。
如您参考的文档注释中所述:
All API requests are represented in protocol 2.0.0 and require the
header X-Restli-Protocol-Version: 2.0.0
.
你应该在请求中添加header,例如,下面的请求没问题:
curl -H "X-Restli-Protocol-Version: 2.0.0" "https://api.linkedin.com/v2/ugcPosts?q=authors&authors=List(urn%3Ali%3Aorganization%3A6645672)&oauth2_access_token=<a-valid-token>
希望对您有所帮助
我在尝试列出组织的所有 UGC 帖子时遇到服务器错误。
我已按照那里的 API 文档进行操作:https://docs.microsoft.com/en-us/linkedin/marketing/integrations/community-management/shares/ugc-post-api#find-ugc-posts-by-authors
我正在对此 URL 执行 GET 请求:https://api.linkedin.com/v2/ugcPosts?q=authors&authors=List(urn%3Ali%3Aorganization%3A6645672)
我添加了具有正确值的授权 header。
应返回 UGC 帖子,但我却收到以下 API 响应:
{
'serviceErrorCode': 0,
'message': 'java.lang.ClassCastException',
'status': 500
}
下面是回复 headers:
{
'X-LI-ResponseOrigin': 'RGW',
'X-Restli-Gateway-Error': 'true',
'Content-Type': 'application/json',
'Content-Length': '76',
'X-Li-Fabric': 'prod-lor1',
'Connection': 'keep-alive',
'X-Li-Pop': 'prod-efr5',
'X-LI-Proto': 'http/1.1',
'X-LI-UUID': 'lsI6Y1fvpRUgJP1JhSsAAA==',
'Set-Cookie': 'lidc="b=OB36:g=1813:u=339:i=1559916004:t=1559978523:s=AQE_uyAgsS2aohUoPQqxLGIDiYC9Gpfr"',
'X-LI-Route-Key': '"b=OB36:g=1813:u=339:i=1559916004:t=1559978523:s=AQE_uyAgsS2aohUoPQqxLGIDiYC9Gpfr"'
}
出于隐私原因,我不会向您提供访问令牌,但您的团队将拥有我刚刚在上面粘贴的响应 header 中显示的请求 ID 的所有详细信息。
感谢社区或 LinkedIn 支持团队帮助我调试此错误。
此致。
如您参考的文档注释中所述:
All API requests are represented in protocol 2.0.0 and require the header
X-Restli-Protocol-Version: 2.0.0
.
你应该在请求中添加header,例如,下面的请求没问题:
curl -H "X-Restli-Protocol-Version: 2.0.0" "https://api.linkedin.com/v2/ugcPosts?q=authors&authors=List(urn%3Ali%3Aorganization%3A6645672)&oauth2_access_token=<a-valid-token>
希望对您有所帮助