Reputation: 11580
I am trying to download/view/export the google docs file. So I used the below export
API
https://www.googleapis.com/drive/v3/files/1d1aigPyLvobDPrOQqiSANN4Yi_PoygYGbJufYLRG4OY/export?mimeType=application/vnd.oasis.opendocument.text
I am getting Response in the below format:
rp¡DM^Wá*e#À ¸»ö¤[E5s"Ì=-h«Ë?P¹¿»"
Î(ï;Fpé¬)ÓÚ@ÁA*ØÃûA×ÛiêÜáEy¬ñ¨Qcö\=<ANºë.ýNÑXp¬ú ëf´Ä¦%ܬî»^gÝ»³{|ÔC}BËî5ã»ÃzLu´¢¢eÅ¡%Ðd7¸®ºÐåÜI>³³',Ì#Þ`%Íû#\·xÑ4Ó2c®1Í{ýQXÌÎXZ_ÑlgÞkËýs!2GÈ)±d«¥ý:n,¤ß2z=¡ÈüsàÍ¿YØko»ÂW«u/7Ãú´c=A#/°.zH
Õ©ÂÕ ¢ß:¨M8j¶2ï_dîÁÛS¯öYìÂ;«{?¹ú£ñ<Dçtqæ
fÇ»T6Æ?r¸8á"FàÅG9oí*ÝÙx²ç>×iW+ùÔMÚ>ìãQS%.(Õ35PÚÕÏÿþ?ýÌçó½FuÈa4Hù»´úPKzóxo
PK¨hBR
Someone help me to convert this text to a viewable format.
Upvotes: 0
Views: 124
Reputation: 6481
mimeTypes
See the list of the ones available here:
https://developers.google.com/drive/api/v3/ref-export-formats
I suspect you are trying to view a binary file (vnd.oasis.opendocument.text
) as plain text, so maybe change your request to:
https://www.googleapis.com/drive/v3/files/1d1aigPyLvobDPrOQqiSANN4Yi_PoygYGbJufYLRG4OY/export?mimeType=text/plain
Upvotes: 1