all.
I have a problem to get DriveItem by a path from OneDrive service.
The first request: GET me/drive/root/children
"remoteItem": {
"id": "EF8A24CC458790DF!106",
"parentReference": {
"driveId": "ef8a24cc458790df",
"driveType": "personal"
}
}
The second request: drives/ef8a24cc458790df/items/EF8A24CC458790DF!106/children
{ "value": [
{
"parentReference": {
"driveId": "ef8a24cc458790df",
"driveType": "personal",
"id": "EF8A24CC458790DF!106",
"name": "src",
"path": "/drives/ef8a24cc458790df/root:/onedriveapi/src"
},
} ] }
But request: /drives/ef8a24cc458790df/root:/onedriveapi/src failed with code "itemNotFound".
This has to work: https://github.com/OneDrive/onedrive-api-docs/blob/live/docs/rest-api/api/driveitem_get.md
Where is my mistake?