我正嘗試使用Google Drive API發送HTTP多部分請求以在Google雲端硬盤中插入文件。使用Google Drive API的Http多部分請求
我點擊以下鏈接:Multipart upload
但是,我得到一個Bad request error
。
下面是我所使用上面的文檔鏈接創建的請求字符串:
String content = '\r\n--' + boundary + '\r\n';
content +='Content-Type: '+'application/json; charset=UTF-8'+'\r\n\r\n';
content +='{' + '\r\n';
content +='"title": "My File"'+'\r\n';
content +='}'+'\r\n\r\n';
content += '--'+boundary + '\r\n';
content +='Content-Type: '+'text/plain'+'\r\n';
content += EncodingUtil.base64Encode(b)+'\r\n';
content += '-'+boundary+'-\r\n';
請能有人告訴我,我是缺少在這裏?
你是這樣做的手動而不使用客戶端庫的任何原因? – DaImTo