1
我使用google-api-client for android。我嘗試使用文本數據和圖像文件進行多部分POST請求。用於創建請求的代碼片段如下:Google-api-client for Multipart POST請求
InputStream stream = new FileInputStream(fileToSend);
InputStreamContent photoContent = new InputStreamContent("image/jpeg", stream);
MultipartRelatedContent multiContent =
new MultipartRelatedContent(content, photoContent);
HttpRequest request = getRequestFactory().buildPostRequest(googleUrl, multiContent);
內容是鍵值文本內容。因此,我得到錯誤500.
我做錯了什麼?