我没有使用谷歌驱动器的 sdk 我想通过我的应用程序在我的谷歌驱动器帐户上上传一个文件,我使用了我设置了 url、headers、filename 的 post api。但我收到错误为“错误的内容类型”。使用多部分'。我的代码如下 -
文件文件 = 新文件(文件名);
字符串 url = " https://www.googleapis.com/upload/drive/v2/files/ " + file.getName() + "?uploadType=multipart&access_token=" + accessToken;
headers.put("内容类型", "multipart/related");
response = GlobalConstants.SERVICE_CLIENT.Execute(url, "post", file, headers); //打电话发帖。
请提前帮助您尽早Thnx