com.google.api.client.auth.oauth2.TokenResponseException: 401 Unauthorized

匿名 (未验证) 提交于 2019-12-03 08:46:08

问题:

I want to use Java Google Drive API. I tried this code:

public Drive getDriveService() throws GeneralSecurityException, IOException, URISyntaxException     {         HttpTransport httpTransport = new NetHttpTransport();         JacksonFactory JSON_FACTORY = new JacksonFactory();          GoogleCredential credential = new GoogleCredential.Builder()             .setTransport(httpTransport)             .setJsonFactory(JSON_FACTORY)             .setServiceAccountId("sonoratestw-226@sonora-project.iam.gserviceaccount.com")             .setServiceAccountPrivateKeyFromP12File(new java.io.File("C:\\buffer\\sonora project-3256770463ed.p12"))             .setServiceAccountScopes(Collections.singleton(SQLAdminScopes.SQLSERVICE_ADMIN))             .setServiceAccountUser("sonoratestw@gmail.com")             .build();          Drive service = new Drive.Builder(httpTransport, JSON_FACTORY, null)             .setApplicationName("FileListAccessProject")             .setHttpRequestInitializer(credential).build();          return service;     } 

But I get this error:

An error occurred: com.google.api.client.auth.oauth2.TokenResponseException: 401 Unauthorized 

I use this configuration:

Can you give some idea how I can fix this?

回答1:

Based on this SO question, one reason that you get the error 401 is that the service account you are using doesn't have access to the drive account associated with your Gmail address. So if you want to be able to access the files it uploads you must grant yourself access to them though the service account.

Here are the other SO questions that I think can help you to understand more the service account



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!