我已经实现了将文件上传到 Google Drive 的功能。我的应用程序(Android 应用程序)有两个页面。
设置页面:我们已经配置了谷歌帐户。登录谷歌账号后。我们授予权限并将 OAUTH_TOKEN 和 OAUTH_TOKEN_SECRET 保存到SharedPreferences。
上传页面:我们从资源管理器中选择文件。然后点击按钮 [UPLOAD] 向他们发送 Google Drive。
我在developers.google.com 上找到了示例代码,展示了如何上传文件。它看起来像这样
/**
* Insert new file.
*
* @param service Drive API service instance.
* @param title Title of the file to insert, including the extension.
* @param description Description of the file to insert.
* @param parentId Optional parent folder's ID.
* @param mimeType MIME type of the file to insert.
* @param filename Filename of the file to insert.
* @return Inserted file metadata if successful, {@code null} otherwise.
*/
private static File insertFile(Drive service, String title, String description,
String parentId, String mimeType, String filename) {
// File's metadata.
File body = new File();
body.setTitle(title);
body.setDescription(description);
body.setMimeType(mimeType);
// Set the parent folder.
if (parentId != null && parentId.length() > 0) {
body.setParents(
Arrays.asList(new File.ParentReference().setId(parentId));
}
// File's content.
java.io.File fileContent = new java.io.File(filename);
FileContent mediaContent = new FileContent(mimeType, fileContent);
try {
File file = service.files().insert(body, mediaContent).execute();
// Uncomment the following line to print the File ID.
// System.out.println("File ID: %s" + file.getId());
return file;
} catch (IOException e) {
System.out.println("An error occured: " + e);
return null;
}
}
所以我们只需调用上面的函数来上传文件。但我不知道如何初始化驱动器(com.google.api.services.drive.Drive)以传递给函数。
我必须做什么才能用 OAUTH_TOKEN 和 OAUTH_TOKEN_SECRET 初始化驱动变量?
谢谢你的帮助。