GoogleScriptでxlsxファイルの内容を取得しようとしています。
ステップ1は、blobを取得して解凍することです。
これが私のコードです:
var file = DocsList.getFileById(docId);
var b1 = file.getBlob().setContentType('application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
var b2 = Utilities.unzip(b1)[0];
しかし、最後の行に「無効な引数」エラーが表示され続けます。
私は何か間違ったことをしていますか?