作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我使用 socialActions
端点检索 linkedin 共享的社交操作时,我使用 projection 通过 displayImage~
获取 Actor 信息>。但它抛出以下错误,
"displayImage!" : { "serviceErrorCode" : 100, "message" : "Not enough permissions to access: GET-playableStreams /assets/C4E03AQH57nd5w5cWUw/mediaArtifactPublicUrls", "status" : 403 }
用于获取社交操作的查询是,
curl 'https://api.linkedin.com/v2/socialActions/urn:li:share:543222277889832/comments?projection=(elements*(*,actor~(*,id,vanityName,profilePicture(displayImage~:playableStreams))))&oauth2_access_token=xxx'
当我使用 person
端点获取人员详细信息时,我可以获得 displayImage~
响应。请任何人帮我解决这个问题。
最佳答案
LinkedIn 已更新 the docs' section关于显示图像的获取:
GET https://api.linkedin.com/v2/me?projection=(id,firstName,lastName,profilePicture(displayImage~:playableStreams))
我已经尝试过了,现在对我有用。请注意,我通过 Authorization
HTTP header 传递访问 token :
export ACCESS_TOKEN=xxx
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" \
'https://api.linkedin.com/v2/me?projection=(id,firstName,lastName,maidenName,profilePicture(displayImage~:playableStreams))'
关于linkedin-api - 领英 v2 API : Cannot get actor displayImage in socialActions endpoint with projections,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50251768/
我是一名优秀的程序员,十分优秀!