如何使用 facebook graph api 创建相册?
我生成的 URL
https://graph.facebook.com/me/albums?access_token=123005381082600|2.AtN22PtKsPB6tN_naD7ZWA__.3600.1298494800-602414132|4I62wGohikRAtIPYTU4jy7__I9A&type=post&name=refacingme
对于使用 FB 图形 API 创建相册来说是否正确,该请求的预期响应是什么?
I've this generated URL
https://graph.facebook.com/me/albums?access_token=123005381082600|2.AtN22PtKsPB6tN_naD7ZWA__.3600.1298494800-602414132|4I62wGohikRAtIPYTU4jy7__I9A&type=post&name=refacingme
is this URL correct for creating an album using FB graph API , and what is the expected response for this request ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此 URL 用于获取属于您的所有相册。
如果你想用FB api创建相册,你必须编写一些代码:
1. 步骤:登录并获取您的令牌
2. 步骤:创建相册
基本上非常简单。
请查看相关的此处的文档,以及这里是示例 PHP 代码。
This URL is for getting all the albums belonging to you.
If you want to create an album with FB api, you have to write some code:
1. step: login and get your token
2. step: create the album
Basically it's pretty simple.
Please check out at the related docs here, and a sample PHP code here.