我正在按照以下 url 中给出的程序删除 box api 中的文件和文件夹。
http://developers.box.com/docs/#files-delete-a-file
http://developers.box.com/docs/#folders-delete-a-folder
我正在使用以下代码删除 box api 中的文件。我成功删除了文件夹,但删除文件失败。
NSString *str;
if ([type isEqualToString:@"folder"])
{
str = [NSString stringWithFormat:@"https://api.box.com/2.0/folders/%@?recursive=true&access_token=%@",folder_id,str_access_token];
}
else
{
str = [NSString stringWithFormat:@"https://api.box.com/2.0/files/%@&access_token=%@&If-Match=%@",folder_id,str_access_token,etag];
}
ASIFormDataRequest *postParams = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:str]];
[postParams setRequestMethod:@"DELETE"];
[postParams startAsynchronous];
postParams.delegate = self ;