Reputation: 709
I am currently trying to get the downloadURL
from a response sent via my server of which, whenever $file->getdownloadUrl()
is used it returns ['downloadURL'] =>
My question is, is it possible to download Google Documents in the application/vnd.google-apps.document
MIME Type?
My assumption is, these would contain a link to the online version of the document, but it would be good to be able to edit the document in the correct format so that any formatting done would be retained when re-uploaded to drive,
Regards,
Upvotes: 1
Views: 96
Reputation: 2987
Nope, you cannot download Google Documents in application/vnd.google-apps.document
MIME type. You only can export it to other formats.
Some workarounds:
Upvotes: 1