user1664112
user1664112

Reputation: 105

Google Drive API IOS change mime type

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

Answers (1)

Claudio Cherubino
Claudio Cherubino

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

Related Questions