The Google drive v2 seams to return a full file resource by default when I preform a file.Get. However when I make the same request against V3 even though the documentation sta
After digging around in the documentation I managed to find a comment.
Use wildcards in field selections, if needed.
For example: fields=items/pagemap/* selects all objects in a pagemap.
So I tried this.
GET /drive/v3/files/0B5pJkOVaKccEVEsybFA2WjJjQ1k?access_token={Token}&fields=*
Sure enough it returned the full File resource.
Solution was to add fields=*
to the request. Personally I think this should be default.