应用程序凭据在 Google Cloud Vision API 中不可用

Posted

技术标签:

【中文标题】应用程序凭据在 Google Cloud Vision API 中不可用【英文标题】:Applications Credentials not avaliable in Google Cloud Vision API 【发布时间】:2021-01-02 06:23:01 【问题描述】:

我正在尝试设置 Google Cloud Vision API,我已经使用 set GOOGLE_APPLICATION_CREDENTIALS PathToJSON 通过 CMD 定义了一个应用程序凭据变量,但这仍然不允许我连接到用于 OCR 的 Google Cloud Vision API。

我也尝试通过 Windows UI 手动设置它,但是仍然没有运气,我在 Google Cloud 页面中创建并定义了一个项目,并生成了一个凭据密钥,当它问我“你打算使用这个API 与 App Engine 还是 Compute Engine?”,我选择了否。

我目前正在使用 Google 的样板代码

public class DetectText 

public static void main(String args[])

    try
        detectText();
    catch (IOException e)
    
        e.printStackTrace();
    



public static void detectText() throws IOException 
    // TODO(developer): Replace these variables before running the sample.
    String filePath = "C:\\Users\\Programming\\Desktop\\TextDetection\\Capture.PNG";
    detectText(filePath);


// Detects text in the specified image.
public static void detectText(String filePath) throws IOException 
    List<AnnotateImageRequest> requests = new ArrayList<>();

    ByteString imgBytes = ByteString.readFrom(new FileInputStream(filePath));

    Image img = Image.newBuilder().setContent(imgBytes).build();
    Feature feat = Feature.newBuilder().setType(Feature.Type.TEXT_DETECTION).build();
    AnnotateImageRequest request =
            AnnotateImageRequest.newBuilder().addFeatures(feat).setImage(img).build();
    requests.add(request);

    // Initialize client that will be used to send requests. This client only needs to be created
    // once, and can be reused for multiple requests. After completing all of your requests, call
    // the "close" method on the client to safely clean up any remaining background resources.
    try (ImageAnnotatorClient client = ImageAnnotatorClient.create()) 
        BatchAnnotateImagesResponse response = client.batchAnnotateImages(requests);
        List<AnnotateImageResponse> responses = response.getResponsesList();

        for (AnnotateImageResponse res : responses) 
            if (res.hasError()) 
                System.out.format("Error: %s%n", res.getError().getMessage());
                return;
            

            // For full list of available annotations, see http://g.co/cloud/vision/docs
            for (EntityAnnotation annotation : res.getTextAnnotationsList()) 
                System.out.format("Text: %s%n", annotation.getDescription());
                System.out.format("Position : %s%n", annotation.getBoundingPoly());
            
        
    


static void authExplicit(String jsonPath) throws IOException 


我没有使用服务器或 Google 计算虚拟机。

有人可以向我解释一下问题是什么,我将如何解决它?

堆栈跟踪

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)
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:142)
at com.google.cloud.vision.v1.stub.GrpcImageAnnotatorStub.create(GrpcImageAnnotatorStub.java:117)
at com.google.cloud.vision.v1.stub.ImageAnnotatorStubSettings.createStub(ImageAnnotatorStubSettings.java:156)
at com.google.cloud.vision.v1.ImageAnnotatorClient.<init>(ImageAnnotatorClient.java:136)
at com.google.cloud.vision.v1.ImageAnnotatorClient.create(ImageAnnotatorClient.java:117)
at com.google.cloud.vision.v1.ImageAnnotatorClient.create(ImageAnnotatorClient.java:108)
at DetectText.detectText(DetectText.java:54)
at DetectText.detectText(DetectText.java:36)
at DetectText.main(DetectText.java:25)

【问题讨论】:

你使用像 IntelliJ 这样的 IDE 吗?您是否尝试重新启动? (是的,它是 windows,如果您希望传播 env 变量,大多数情况下都需要重新启动......微软快乐!) 【参考方案1】:

根据您的错误消息,似乎没有找到 GOOGLE_APPLICATION_CREDENTIALS 环境变量。

一方面,在尝试运行text detection sample code 之前,请按照documentation 中概述的步骤操作,以消除其中任何一个已被跳过的情况。

另一方面,如果您使用的是 IntelliJ 或 Eclipse 等 IDE,则必须通过 Windows System Properties 将环境变量 GOOGLE_APPLICATION_CREDENTIALS 设置为全局,以便 IDE 可以使用它。然而,在测试时,我必须关闭并重新打开 IDE 才能使更改生效,并且不会出现上述错误。

另外,还有一种方法可以在代码中指定JSON文件的位置,如this example所示。不过不建议这么说,最好使用环境变量。

【讨论】:

以上是关于应用程序凭据在 Google Cloud Vision API 中不可用的主要内容,如果未能解决你的问题,请参考以下文章

带有 Terraform 的 Google Cloud 凭据

保存Google Cloud Platform服务帐户凭据的位置

用于配置 OAuth2 同意和凭据的 Google Cloud Platform API

GKE 上的 Google Cloud PubSub:尝试检索凭据时出现 FileNotFoundException

如何将 Google Cloud Vision API 凭据密钥文件指向 yii2 框架中的 GOOGLE_APPLICATION_CREDENTIALS 变量

Google Dialogflow:应用程序默认凭据不可用