Reputation: 105
How do I change the mime type to a google spreadsheet? For some reason @"application/vnd.google-apps.spreadsheet" doesn't convert my "csv" to a true google spreadsheet.
Upvotes: 1
Views: 537
Reputation: 15004
To convert your csv into a Google spreadsheet you don't have to specify the spreadsheet MIME type, but instead upload it normally and add the ?convert=true
query parameter to your request URL:
https://developers.google.com/drive/v2/reference/files/insert
Upvotes: 1