我正在尝试使用JSON文件向Google Vision API进行身份验证。通常,我使用GOOGLE_APPLICATION_CREDENTIALS
环境变量来执行此操作,该环境变量指定JSON文件本身的路径。
但是,我需要在应用程序本身中指定此名称,并使用JSON文件内容进行身份验证。
现在,我尝试指定CallSettings
,然后将其作为参数传递给ImageAnnotatorClient.Create
方法。当然,可以通过从JSON文件中读取身份验证信息来完美创建CallSettings
对象,但是将其作为参数传递给ImageAnnotatorClient
似乎没有什么区别,因为ImageAnnotatorClient.Create
方法仍在寻找环境变量,并引发InvalidOperation
异常,指定找不到环境变量。
知道如何获得所需的行为吗?
Google Vision Docs
最佳答案
using System;
using Google.Apis.Auth.OAuth2;
using Google.Cloud.Vision.V1;
using Grpc.Auth;
namespace GoogleVision
{
class Program
{
static void Main(string[] args)
{
string jsonPath = @"<path to .json credential file>";
var credential = GoogleCredential.FromFile(jsonPath).CreateScoped(ImageAnnotatorClient.DefaultScopes);
var channel = new Grpc.Core.Channel(ImageAnnotatorClient.DefaultEndpoint.ToString(), credential.ToChannelCredentials());
var client = ImageAnnotatorClient.Create(channel);
var image = Image.FromFile(@"<path to your image file>");
var response = client.DetectLabels(image);
foreach (var annotation in response)
{
if (annotation.Description != null)
Console.WriteLine(annotation.Description);
}
}
}
}
关于c# - Google Vision API指定JSON文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45372938/