Hit*_*shi 0 java google-drive-api
我正在尝试使用drive rest api将文件上传到google驱动器,遵循本教程.
对于授权,功能是:
public static Credential authorize() throws IOException {
// Load client secrets.
InputStream in =
DriveQuickstart.class.getResourceAsStream("client_secret.json");
GoogleClientSecrets clientSecrets =
GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in));
// Build flow and trigger user authorization request.
GoogleAuthorizationCodeFlow flow =
new GoogleAuthorizationCodeFlow.Builder(
HTTP_TRANSPORT, JSON_FACTORY, clientSecrets, SCOPES)
.setDataStoreFactory(DATA_STORE_FACTORY)
.setAccessType("offline")
.build();
Credential credential = new AuthorizationCodeInstalledApp(
flow, new LocalServerReceiver()).authorize("user");
System.out.println(
"Credentials saved to " + DATA_STORE_DIR.getAbsolutePath());
return credential;
}
Run Code Online (Sandbox Code Playgroud)
我获取驱动器中所有文件的功能完全正常.
private static void listFiles(Drive service) throws IOException
{
// Print the names and IDs for up to 10 files.
FileList result = service.files().list().setMaxResults(10).execute();
List<File> files = result.getItems();
if (files == null || files.size() == 0) {
System.out.println("No files found.");
} else {
System.out.println("Files:");
for (File file : files) {
System.out.printf("%s (%s)\n", file.getTitle(), file.getId());
}
}
}
Run Code Online (Sandbox Code Playgroud)
但是当我尝试在驱动器中创建和插入文件时,我得到异常,函数和异常如下:
private static void insertFile(Drive service, String title, String description) {
// File's metadata.
File file = new File();
file.setTitle(title);
file.setDescription(description);
file.setMimeType("application/vnd.google-apps.drive-sdk");
try {
file = service.files().insert(file).execute();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// Print the new file ID.
System.out.println("File ID: %s" + file.getId());
}
Run Code Online (Sandbox Code Playgroud)
例外情况是:
com.google.api.client.googleapis.json.GoogleJsonResponseException: 403 Forbidden
{
"code" : 403,
"errors" : [ {
"domain" : "global",
"message" : "Insufficient Permission",
"reason" : "insufficientPermissions"
} ],
"message" : "Insufficient Permission"
}
Run Code Online (Sandbox Code Playgroud)
文件ID:在com.google.api.client.googleapis.json.GoogleJsonResponseException.from(GoogleJsonResponseException.java:145)在com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java%snull的:113)在com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.newExceptionOnError(AbstractGoogleJsonClientRequest.java:40)在com.google.api.client.googleapis.services.AbstractGoogleClientRequest $ 1.interceptResponse(AbstractGoogleClientRequest.java: 321)在com.google.api.client.http.HttpRequest.execute(HttpRequest.java:1056)在com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:419)在com.google .api.client.googleapis.services.AbstractGoogleClientRequest.在com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:469)在com.teamchat.google.sheet.integration.DriveQuickstart.insertFile(DriveQuickstart.java executeUnparsed(AbstractGoogleClientRequest.java:352): 137)在com.teamchat.google.sheet.integration.DriveQuickstart.main(DriveQuickstart.java:110)
这只是一个简单的Java项目并使用OAuth.
所以我能够获取文件列表,但无法在谷歌驱动器中插入文件.有人能告诉我我做错了什么.
"理由":"不足的承诺"
这意味着您在获得授权时设置的范围不允许您在资源上写入.
设置正确的范围https://developers.google.com/drive/web/scopes或https://developers.google.com/resources/api-libraries/documentation/drive/v2/java/latest/com/google/ API /服务/驱动器/ DriveScopes.html
通常:
private static final List<String> SCOPES =
Arrays.asList(DriveScopes.DRIVE_FILE);
Run Code Online (Sandbox Code Playgroud)