document-understanding
latest
false
使用 HTTP 请求的凭据
Document Understanding API 指南
使用 HTTP 请求的凭据
创建外部应用程序后,您可以在实现中使用它。 首先,使用访问令牌完成身份验证程序。 以下是您需要遵循的步骤:
- 获取配置外部应用程序时收到的
AppId
和AppSecret
的访问令牌。 - 使用访问令牌作为请求标头。
为了访问应用程序作用域,机密应用程序在调用 POST https://cloud.uipath.com/identity_/connect/token 时使用
clientID
和 clientSecret
端点。 这将返回访问令牌。
请求示例:
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": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjgwM",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "Du.Digitization.Api"
}
{
"access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjgwM",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "Du.Digitization.Api"
}