我正在尝试实现 ERP 系统和 Google My Business 之间的集成,以保持商店数据同步。
我在开发者控制台中有一个项目。我已获得对 GMB API 的访问权限,并已获 Google 批准使用此 API。
我正在使用服务帐户,并已按照各种指南的说明进行操作。
但现在我被困住了。
我正在使用 google GMB c# 库连接到 GMB。我的服务帐户有一个有效的 .12 文件。
string MybusinessServiceScope = "https://www.googleapis.com/auth/plus.business.manage";
String serviceAccountEmail = "myserviceaccount@myapplication-1349.iam.gserviceaccount.com";
var certificate = new X509Certificate2(_serviceP12File, "notasecret", X509KeyStorageFlags.Exportable);
ServiceAccountCredential credential = new ServiceAccountCredential(
new ServiceAccountCredential.Initializer(serviceAccountEmail)
{
Scopes = new[] { MybusinessServiceScope },
}.FromCertificate(certificate));
return new MybusinessService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = "myapplication-1349",
});
当我尝试列出、修补或创建位置时,我不断收到相同的响应:
未找到请求的实体。[404]
Errors [
Message[Requested entity was not found.] Location[ - ] Reason[notFound] Domain[global]
]
任何帮助表示赞赏