找不到GOOGLE_APPLICATION_CREDENTIALS。

问题描述 投票:1回答:1

目前必须将谷歌云平台服务集成到我的应用程序中,但收到以下异常。

**W/System.err: java.io.IOException: The Application Default Credentials are not available. They are available if running in Google Compute Engine. Otherwise, the environment variable GOOGLE_APPLICATION_CREDENTIALS must be defined pointing to a file defining the credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.
        at com.google.auth.oauth2.DefaultCredentialsProvider.getDefaultCredentials(DefaultCredentialsProvider.java:134)
W/System.err:     at com.google.auth.oauth2.GoogleCredentials.getApplicationDefault(GoogleCredentials.java:119)
        at com.google.auth.oauth2.GoogleCredentials.getApplicationDefault(GoogleCredentials.java:91)
        at com.google.api.gax.core.GoogleCredentialsProvider.getCredentials(GoogleCredentialsProvider.java:67)
        at com.google.api.gax.rpc.ClientContext.create(ClientContext.java:135)
        at com.google.cloud.speech.v1.stub.GrpcSpeechStub.create(GrpcSpeechStub.java:94)
        at com.google.cloud.speech.v1.stub.SpeechStubSettings.createStub(SpeechStubSettings.java:131)
        at com.google.cloud.speech.v1.SpeechClient.<init>(SpeechClient.java:144)
        at com.google.cloud.speech.v1.SpeechClient.create(SpeechClient.java:126)
        at com.google.cloud.speech.v1.SpeechClient.create(SpeechClient.java:118)
        at com.dno.app.ui.TranscriptFragment$1.onClick(TranscriptFragment.java:72)**

环境变量已设置。

environment_variable

.json文件在这里。

.json file

应用程序在这个代码块(片段)中的 authImplicit()处崩溃。

    transcriptBtn = getActivity().findViewById(R.id.transcript_button);
    transcriptBtn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            try (SpeechClient speechClient = SpeechClient.create()) {
                authImplicit(); // issue with Google Platform Login Authentification
                // - does not read the environment variable, and therefore cannot get access to the .json file.

                // The path to the audio file to transcribe
                String fileName = getFile().getName();

                // Reads the audio file into memory
                Path path = Paths.get(fileName);

                byte[] data = Files.readAllBytes(path);
                ByteString audioBytes = ByteString.copyFrom(data);

                // Builds the sync recognize request
                RecognitionConfig config =
                        RecognitionConfig.newBuilder()
                                .setEncoding(RecognitionConfig.AudioEncoding.FLAC)
                                .setSampleRateHertz(16000)
                                .setLanguageCode("en-US")
                                .build();
                RecognitionAudio audio = RecognitionAudio.newBuilder().setContent(audioBytes).build();

                // Performs speech recognition on the audio file
                RecognizeResponse response = speechClient.recognize(config, audio);
                List<SpeechRecognitionResult> results = response.getResultsList();

                for (SpeechRecognitionResult result : results) {
                    // There can be several alternative transcripts for a given chunk of speech. Just use the
                    // first (most likely) one here.
                    SpeechRecognitionAlternative alternative = result.getAlternativesList().get(0);
                    System.out.printf("Transcription: %s%n", alternative.getTranscript());
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    });

authImplicit()的代码。

 private void authImplicit() {
        // If you don't specify credentials when constructing the client, the client library will
        // look for credentials via the environment variable GOOGLE_APPLICATION_CREDENTIALS.
        Storage storage = StorageOptions.getDefaultInstance().getService();

        System.out.println("Buckets:");
        Page<Bucket> buckets = storage.list();
        for (Bucket bucket : buckets.iterateAll()) {
            System.out.println(bucket.toString());
        }
    }

我选择了一个类型为Owner的服务账户,所以我不应该缺少任何权限。

编辑 (还是不行):我试着用这个例子,但还是不行。应用程序默认凭证不可用

java android authentication google-cloud-platform speech-to-text
1个回答
2
投票

我可以理解你,你已经阅读了文档,并实现了这里所说的所有步骤--。https:/cloud.google.comstoragedocsreferencelibraries#windows。

  1. 正如 @John Hanley 所说,你是否检查了打印环境变量?

  2. 它绝对不是与所有者相关的权限问题,因为异常情况显示java.io.IOException: The Application Default Credentials are not available. They are available if running in Google Compute Engine. Otherwise, the environment variable GOOGLE_APPLICATION_CREDENTIALS must be defined pointing to a file defining the credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.

现在,要解决这个问题,你是想只使用环境变量呢,还是其他方法都可以?

如果你可以使用其他方法,那么看看这段代码吧

private void authImplicit() {

    //please give exact file name for this credentials.json
    Credentials credentials = GoogleCredentials
      .fromStream(new FileInputStream("C:\\Users\\dbgno\\Keys\\credentials.json"));
    Storage storage = StorageOptions.newBuilder().setCredentials(credentials)
      .setProjectId("Some Project").build().getService();

    System.out.println("Buckets:");
    Page<Bucket> buckets = storage.list();
    for (Bucket bucket : buckets.iterateAll()) {
        System.out.println(bucket.toString());
    }
}

编辑1:努力解决试试这个,看看你是否能读取你提供的JSON文件作为输入。打印语句应该显示出你要验证的服务账户。

    public static Credential getDriveService(String fileLocation, String servAccAdmin)
      throws IOException {
    HttpTransport httpTransport = new NetHttpTransport();
    JsonFactory jsonFactory = new JacksonFactory();

    GoogleCredential googleCredential =
        GoogleCredential.fromStream(new FileInputStream(fileLocation), httpTransport, jsonFactory)
            .createScoped(SCOPES);
    System.out.println("--------------- " + googleCredential.getServiceAccountId());

    Credential credential = new GoogleCredential.Builder()
        .setTransport(googleCredential.getTransport())
        .setJsonFactory(googleCredential.getJsonFactory())
        .setServiceAccountPrivateKeyId(googleCredential.getServiceAccountPrivateKeyId())
        .setServiceAccountId(googleCredential.getServiceAccountId()).setServiceAccountScopes(SCOPES)
        .setServiceAccountPrivateKey(googleCredential.getServiceAccountPrivateKey())
        .setServiceAccountUser(servAccAdmin).build();

    return credential;
}

编辑2:

由于我们看到的是一些凭证的问题,我试图看到我访问任何其他google API服务的方式,可能是drive或gmail,我们手动传递密钥文件和构建凭证,这些凭证应该在进一步的服务调用中使用。现在尝试添加这些依赖关系,这只是为了通过使用我们访问google drivegmail等的方式来排除故障。我们就会知道google cloud api是否能够构建凭证了

<dependency>
  <groupId>com.google.http-client</groupId>
  <artifactId>google-http-client</artifactId>
  <version>${project.http.version}</version>
</dependency>
<dependency>
  <groupId>com.google.http-client</groupId>
  <artifactId>google-http-client-jackson2</artifactId>
  <version>${project.http.version}</version>
</dependency>
<dependency>
  <groupId>com.google.oauth-client</groupId>
  <artifactId>google-oauth-client-jetty</artifactId>
  <version>${project.oauth.version}</version>
</dependency>
© www.soinside.com 2019 - 2024. All rights reserved.