如何将Google Apps脚本Blob转换为base64编码的字符串?

时间:2019-08-08 17:43:00

标签: google-apps-script

我在Google Apps脚本中有一个Blob。如何将其转换为base64编码的字符串以将其写入其他API? FileReader似乎不起作用...

1 个答案:

答案 0 :(得分:2)

您可以尝试以下方法:

Utilities.base64Encode(blob.getBytes());

Ref docs here