如何删除相册?
我尝试在我的应用程序中删除相册,但没有工作方法。 我尝试使用带参数的 url:方法中的访问令牌和批量请求(但我不知道语法,因为网上只有 GET 示例)。
有时某些方法似乎有效,但我收到此消息:
(#200) 应用程序无法进行此 API 调用。
有人可以帮助我吗?
I try in my application to delete an album, but there are no working methods.
I tried by using the url with parameters: the access token at the method, with batch request (but I don't know the syntax because on the net there are only GET example).
And sometimes some methods seems to work but I obtain this message:
(#200) Application does not have the capability to make this API call.
Somebody can help me ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
没有公共 API 可以从 Facebook 中删除内容(应用程序发布的帖子和评论除外,应用程序本身可以删除这些内容)
There's no public API to remove content from Facebook (exceptions being posts and comments made by an app, which the app itself can delete)
Graph API 目前不提供删除
相册
或照片
的方法Graph API currently not providing ways to remove
album
orphoto
此错误意味着您的应用程序无法删除相册/照片。只有列入白名单的应用程序才能执行此操作,并且您必须获得 Facebook 批准的权限(祝您好运)。
This error means that your application cannot delete albums/photos. Only white-listed apps can do this, and you will have to get the permissions approved by Facebook (good luck getting a hold of them).
您可以删除应用程序已上传的照片。
删除 = facebookClient.deleteObject(facebookObjectId); (Java 代码)
这是一个布尔值,当我的应用程序删除照片时,它将返回 true。
但不幸的是,我正在寻找相册删除功能,但目前似乎还不可能。 :(
You can delete a Photo that a Application has uploaded.
deleted = facebookClient.deleteObject(facebookObjectId); (Java Code)
This is a boolean that will return true when my app deletes the photo.
But unfortunately im searching for album deletion, and that doesn't seem to still be possible at the moment. :(