r-使用Google文档AI(Form Parser API)进行身份验证



我一直试图通过解析程序API进行身份验证,但没有成功。我已经建立了谷歌服务帐户并创建了两个密钥。我已经设置了所有者角色并下载了凭证json文件。

googleAuthR::gar_auth_service("D:/898 sample/document ai/form-898-scan-bd4b8b48b570.json")
library(daiR)
response1 <- dai_sync("D:/test file.pdf"
,
proj_id = get_project_id(path = "D:/crudentialabc123.json"),
proc_id = "e4xxxxxx",
loc = "us",
token = dai_token(
path = Sys.getenv("GSC_AUTH_FILE")
# scopes = "https://googleapis.com/auth/cloud-platform"
)
)

我一直收到403权限被拒绝的错误。

File submitted at 2022-04-10 05:17:57. HTTP status: 403 - unsuccessful.
Error: "Permission 'documentai.processors.processOnline' denied on resource '//documentai.googleapis.com/projects/projectname/locations/us/processors/e4xxxxxxx' (or it may not exist)."
Response [https://us-documentai.googleapis.com/v1/projects/projectname/locations/us/processors/e46888f802fea83d:process]
Date: 2022-04-10 05:17
Status: 403
Content-Type: application/json; charset=UTF-8
Size: 649 B
{
"error": {
"code": 403,
"message": "Permission 'documentai.processors.processOnline' denied on resource '//documentai.googleapis.com/projects/form-898-scan/locations/us/processors/e46...
"status": "PERMISSION_DENIED",
"details": [
{
"@type": "type.googleapis.com/google.rpc.ErrorInfo",
"reason": "IAM_PERMISSION_DENIED",
"domain": "documentai.googleapis.com",
...

任何帮助都将不胜感激!

我建议查看这篇关于使用R.进行谷歌身份验证的博客文章

https://cran.r-project.org/web/packages/googleAuthR/vignettes/google-authentication-types.html

目前,谷歌云没有任何R客户端库,但列出的第三方软件包应该能够提供一个起点。

相关内容

  • 没有找到相关文章

最新更新