使用 sdk 获取新的个人资料封面
是否可以使用 sdk php 或 JS 获取并更改新的个人资料封面(我的或我朋友的个人资料封面)?
Is it possible to get and to change the new porfile cover (mine or my friends' profil cover) with the sdk php or JS ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以使用 Graph API 获取 Facebook 的用户封面图像。您必须将“fields=cover”添加到用户请求中。响应是字段 id、source 和 offset_y 的数组。为此,您需要一个访问令牌。
您无法使用 API 更新封面照片,只能检索它。
It is possible to get the Facebook's user cover image using the Graph API. You have to add 'fields=cover' to the user request. The response is an array of fields id, source, and offset_y. You need an access token for this.
You cannot update the cover photo using the API, only retrieve it.
以 Facebook 目前公开的 API 来说,这仍然是不可能的。
It's still not possible with the current APIs exposed by Facebook.