The OneDrive swap model is slightly different from + take passes. Essentially, you will make a request like:
GET https://graph.microsoft.com/v1.0/me/drive/root/children?$top=5
and in the answer you will see a regular array of values ββalong with the property @odata.nextLink
. You will want to use this URL to request the following page:
"@odata.nextLink": "https://graph.microsoft.com/v1.0/me/drive/root/children?$skiptoken=ASDGASGSD"
GET https://graph.microsoft.com/v1.0/me/drive/root/children?$skiptoken=ASDGASGSD
You keep doing this until you get a refund @odata.nextLink
.
source
share