dongyanhu5628 2018-07-20 22:03
浏览 67
已采纳

使用Microsoft Graph API创建文件夹是不可接受的

I am using Microsoft Graph Library for PHP (microsoftgraph/msgraph-sdk-php) to save documents in Onedrive for Business.

I am having issues to create items (folders or upload files) using Microsoft Graph API, for instance, when I am creating folders I am getting:

"Client error: `POST https://graph.microsoft.com/v1.0/drives/MYDRIVEID/items/MYPARENTFOLDERID/children` resulted in a `400 Bad Request` response: { "error": { "code": "invalidRequest", "message": "One of the provided arguments is not acceptable.", "innerError": { "request-id": "bec1d260-3efd-4417-ba80-96ec37078df6", "date": "2018-07-20T16:48:34" } } } " 

POST

https://graph.microsoft.com/v1.0/drives/MYDRIVEID/items/MYPARENTFOLDERID/children

body:

{"name":"Project1","folder":{}}

This is the code I am executing:

$graph->createRequest("POST","/drives/$driveId/items/$itemId/children")- 
>attachBody($body)->setReturnType(Model\DriveItem::class)->execute();

My guess is that the API is expecting something different than I am sending, I have tried to change the body, for instance:

{"name":"Project1","folder":{"childCount":0}}
{"name":"Project1","folder":{},"@microsoft.graph.conflictBehavior":"rename"} 
{"name":"Project1","folder":{"childCount":0},"@microsoft.graph.conflictBehavior":"rename"}

but I am still getting the same error.

I am not sure what I am doing wrong

Any ideas?

Thanks in advance for your help

  • 写回答

1条回答 默认 最新

  • dqdpz60048 2018-07-25 15:20
    关注

    I deleted the app registration and registered it again in azure portal. Create folder operation is working as expected.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分