我正在开发一个功能,需要为Google驱动器创建一个新的空文件(而不是文档),现在我正在使用文档列表API 3.0,我指的是文档:https://developers.google.com/google-apps/documents-list/#uploading_a_new_document_or_file_with_both_metadata_and_content。 我会将一个零字节文件上传到Google驱动器以生成空文件。
现在我在请求步骤1和请求步骤2中遇到问题。在第一次发布[resumable-create-media link]请求后,我成功获得了上传位置。然后,当我向该位置请求put方法时,我得到了404未找到的错误。所有请求都有“GData-Version:3.0”和“Authorization:accessToken”标题。
我从论坛中搜索了很多,并想出了如何创建空文档,但无法弄清楚如何创建空文件。这是我的代码,任何人都可以帮助看看哪个部分是错的?提前谢谢。
private final static String PARAM_CONTENT_TYPE = "Content-Type";
private final static String PARAM_UPLOAD_LENGTH = "X-Upload-Content-Length";
private final static String PARAM_UPLOAD_TYPE = "X-Upload-Content-Type";
private final static String CONTENT_TYPE_XML = "application/atom+xml";
private final static String URI_RESUMABLE_RESOURCE = "https://docs.google.com/feeds/upload/create-session/default/private/full";
private final static String ENTITY_NEW_FILE = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><entry xmlns=\"http://www.w3.org/2005/Atom\" "
+ "xmlns:docs=\"http://schemas.google.com/docs/2007\"><title>{0}</title></entry>";
@Override
public boolean createNewFile() throws IOException {
String uri = null;
if (ROOT.equals(parentResourceId))
uri = URI_RESUMABLE_RESOURCE;
else
uri = URI_RESUMABLE_RESOURCE + "/%3A" + parentResourceId + "/contents";
try {
StringEntity entity = new StringEntity(MessageFormat.format(ENTITY_NEW_FILE, getName()), Constants.ENCODING);
Map<String, String> headers = new HashMap<String, String>();
headers.put(PARAM_CONTENT_TYPE, CONTENT_TYPE_XML);
headers.put(PARAM_UPLOAD_LENGTH, "0");
headers.put(PARAM_UPLOAD_TYPE, "text/plain");
Map<String, String> params = new HashMap<String, String>();
params.put("convert", "false");
HttpResponse response = helper.execMethodAsResponse(uri, new PostMethod(entity), headers, params);
String location = null;
if ((location = response.getFirstHeader("Location").getValue()) != null) {
headers = new HashMap<String, String>();
headers.put(PARAM_CONTENT_TYPE, "text/plain");
headers.put("Content-Range", "bytes 0-0/0");
//FIXME: Problem occurs here, this put invocation will return 404 not found error.
JsonObject obj = helper.execMethodAsJson(location, new PutMethod(new ByteArrayEntity(new byte[0])), headers, null);
if (obj != null) {
decorateFile(this, obj.get("entry").getAsJsonObject());
return true;
}
}
} catch (UnsupportedEncodingException e) {
}
return false;
}
答案 0 :(得分:0)
在Google云端硬盘上创建空文件的最简单方法是使用Google Drive API v2并发送service.files.insert(File content)
请求。
您可以使用参考指南中的Java示例并将其编辑为不包含MediaContent
:https://developers.google.com/drive/v2/reference/files/insert
答案 1 :(得分:0)
根据以下链接我已经找到了问题:Google Documents List API file upload 400 response
第二个put请求不需要任何其他标头,例如“GData-Version:3.0”和“Authorization:Bearer ****”等。唯一需要做的是使用位置URI的新put请求,然后它将返回201状态代码的响应。
谢谢大家。