document-understanding
latest
false
创建新项目和外部应用程序
Document Understanding API 指南
创建新项目和外部应用程序
- 创建一个新的 Document Understanding TM 项目并检索
projectId
(位于项目的 URL 中)。在此示例中,我们使用 Swagger 中提供的预定义项目,可通过以下{projectID
标识: 00000000-0000-0000-0000-000000000000。备注:预定义项目在 Document Understanding 用户界面中不可见。 它提供对可用公共 ML 模型的编程访问权限。
- 创建一个将 Document Understanding 用作资源的外部应用程序,并且该应用程序包含所有可用的应用程序作用域。
- 发起对身份服务的 curl 调用,以获取令牌。
curl --data \
-urlencode "scope=Du.Digitization" --data \
-urlencode "client_id={app_id}" --data \
-urlencode "client_secret={app_secret}" --data \
-urlencode "grant_type=client_credentials" https://cloud.uipath.com/identity_/connect/token
curl --data \
-urlencode "scope=Du.Digitization" --data \
-urlencode "client_id={app_id}" --data \
-urlencode "client_secret={app_secret}" --data \
-urlencode "grant_type=client_credentials" https://cloud.uipath.com/identity_/connect/token
注意: 授权令牌具有到期日。 请参阅以下响应以了解到期情况,并确保在到期前续订。
{
"access_token": "eyJh**CRaKrg",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "Du.Digitization.Api"
}
{
"access_token": "eyJh**CRaKrg",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "Du.Digitization.Api"
}