Facebook API:从“粉丝照片”中移动粉丝照片专辑到另一个专辑
我是 Facebook 粉丝页面的管理员,我想制作一个应用程序,将我的页面粉丝上传的照片移动(或复制)到我创建的另一个页面的相册中。
我从未使用过 Facebook API。是否可以获取所有粉丝的照片?是否可以将照片保存到我页面的相册中?
I am administrator of a Facebook Fan Page and I want to make an application that moves (or copies) photos uploaded by my page's fans to another page's album created by me.
I have never used Facebook APIs. Is it possible to get all fan's photos? Is it possible to save photos to my page's album?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,您可以通过向以下地址发出 GET 请求来获取粉丝页面中的图片:
https://graph.facebook.com/PAGE_ID/photos。它返回页面图片的数组(JSON 编码)。您可以此处了解一下
同样,一旦您有了这些图片信息,您就可以将它们发送到
https://graph.facebook.com/PROFILE_ID/ALBUM_ID
您将在该应用程序中使用什么技术?
Actually, you can get the pictures in your fan's page by issuing a GET request to
https://graph.facebook.com/PAGE_ID/photos. it returns an array (JSON encoded) of the page's picture. You can have an idea of this here
Similarly, once you have those picture information you can send them to
https://graph.facebook.com/PROFILE_ID/ALBUM_ID
What tecnology are you going to use for this application?