我正在尝试使用Google Document AI从我们的应用程序提供商那里获得发票。我已经创建了一个项目(使用Google Vision AI),一个Storage Bucket,一个服务帐户(并获得了一个JSON密钥文件),一个处理器,但当我进行身份验证时,我得到了以下消息:
Error while trying to connect to the Google DocumentAI Engine. PERMISSION DENIED: Permission 'documentai.processors.processOnline' denied on resource '//documentai.googleapis.com/projects/savvy-container-300718/locations/null/processors/32a7eaa085f61a3b' (or it may not exist).你知道为什么我会得到这个错误吗?
发布于 2021-11-29 18:33:25
这可能是服务帐户没有正确的权限设置
发布于 2022-02-03 15:32:07
从错误消息中看,似乎缺少处理器位置(
.../locations/null/processors/....):
根据处理器位置的不同,端点
.../locations/us/processors/....../locations/eu/processors/...https://stackoverflow.com/questions/69486120
复制相似问题