我正在使用Microsoft Graph API
1) Create Team and Channels
2) Installing an App
3) Adding Plans, buckets, and tasks to the planner app
4) Copy items from another Drive to the newly created channels drive.
我的代码按此顺序执行
1) Create Group and Team
2) Create Channel under team
3) Create Plan in Planner **/planner/plans**
4) Install another app
5) adding buckets and tasks to the created PLan
6) get list of drives using `groups/{group-id}/drive/items/{item-id}/children`
7) Copy items to drive of Created channel
所以按此顺序的问题是,第7点仅返回通用香奈儿的驱动器,而没有返回 新创建的频道。
但是如果我将此代码执行顺序更改为
1> 2>7>4>3>5>6>7
然后在获取驱动器步骤中返回所有驱动器。
因此,我发现在获取驱动器之前创建计划存在问题。如果在计划程序中创建计划之前获取驱动器,它将起作用。 为什么会这样?
代码执行的正确顺序应该是什么,以便所有代码都能按预期工作?