When calling a delta query using C# SDK on Graph API, different formatted deltaLinks are returned, depending on if it's the initial request or subsequent requests. On initial request this is returned:
https://graph.microsoft.com/v1.0/groups/{groupId}/drive/root/microsoft.graph.delta?token={token}
On subsequent requests this is returned:
https://graph.microsoft.com/v1.0/groups('{groupId}')/drive/root/microsoft.graph.delta(token='{token}')
This makes it a bit annoying to get the token from the url, for storing. Could this be fixed?