gpt4 book ai didi

google-api - 如何通过显式身份验证使用 ImageAnnotatorClient?

转载 作者:行者123 更新时间:2023-12-04 03:07:43 26 4
gpt4 key购买 nike

很清楚如何use Storageclient with explicit authentication .也很清楚如何使用ImageAnnotatorClient with implicit authentication .但是ImageAnnotatorClient如何使用显式认证呢?它不接受凭据作为创建方法的输入。我使用 C#。我需要用于 OCR 目的的库。

最佳答案

如果您所说的“显式”是指在代码中加载您的凭据文件,这是我在 Scala 中的做法(vision v1.20.0):

val visionClient = {
val credStream = getInputStream( "my-api-key.json" )
val credentials = GoogleCredentials.fromStream(credStream)
val imageAnnotatorSettings = ImageAnnotatorSettings.newBuilder()
.setCredentialsProvider( FixedCredentialsProvider.create( credentials ) )
.build();
ImageAnnotatorClient.create( imageAnnotatorSettings )
}

您应该能够在 C# 中执行类似的操作。

关于google-api - 如何通过显式身份验证使用 ImageAnnotatorClient?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47609597/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com