integration-service
latest
false
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。 Integration Service で提供されるコネクタ パッケージの一部は機械翻訳で処理されています。 新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
UiPath logo, featuring letters U and I in white

Integration Service ユーザー ガイド

最終更新日時 2025年11月20日

HTTP Authentication

前提条件

To create a connection using the HTTP connector, you must provide the details needed for the selected authentication type. See the following sections for information on the details required for each authentication type. For information on how to retrieve these details, refer to the documentation of the API provider.

UiPath User Access Token

Establish a connection through supported UiPath services. No configuration required.

OAuth 2.0 の認可コード

以下の詳細情報を指定します。

  • Connection name - A descriptive name to help you identify this connection.
  • Base URL - The base URL of your API (e.g. https://api.example.com).
  • Client ID - The unique identifier for your application as provided by your OAuth provider during app registration.
  • Client secret - The confidential secret key for your application as provided by your OAuth provider.
  • Authorization URL - The full authorization endpoint URL as provided by your OAuth provider (e.g. https://login.example.com/oauth2/authorize).
  • Token URL - The token endpoint URL where authorization codes or credentials are exchanged for access tokens as provided by your OAuth provider (e.g. https://login.example.com/oauth2/token).
  • Scope - The required OAuth scopes based on your API provider or integration needs.

Additional configuration:

  • Refresh token URL - The refresh token endpoint URL as provided by your OAuth provider (e.g. https://example.com/docs/oauth/refresh)
  • Token revoke URL - The token revocation endpoint URL as provided by your OAuth provider (https://example.com/docs/oauth/revoke).
  • Refresh interval - Time in seconds between OAuth token refresh attempts.
  • OAuth basic header - Enable to send Client ID and Secret as a basic authentication header during OAuth token exchange. Most providers need this enabled.

PKCE を使用した OAuth 2.0 認可コード

以下の詳細情報を指定します。

  • Connection name - A descriptive name to help you identify this connection.
  • Base URL - The base URL of your API (e.g. https://api.example.com).
  • Client ID - The unique identifier for your application as provided by your OAuth provider during app registration.
  • Client secret - The confidential secret key for your application as provided by your OAuth provider.
  • Authorization URL - The full authorization endpoint URL as provided by your OAuth provider (e.g. https://login.example.com/oauth2/authorize).
  • Token URL - The token endpoint URL where authorization codes or credentials are exchanged for access tokens as provided by your OAuth provider (e.g. https://login.example.com/oauth2/token).
  • Scope - The required OAuth scopes based on your API provider or integration needs.

Additional configuration:

  • Refresh token URL - The refresh token endpoint URL as provided by your OAuth provider (e.g. https://example.com/docs/oauth/refresh)
  • Token revoke URL - The token revocation endpoint URL as provided by your OAuth provider (https://example.com/docs/oauth/revoke).
  • Refresh interval - Time in seconds between OAuth token refresh attempts.
  • OAuth basic header - Enable to send Client ID and Secret as a basic authentication header during OAuth token exchange. Most providers need this enabled.

OAuth 2.0 クライアント資格情報

以下の詳細情報を指定します。

  • Connection name - A descriptive name to help you identify this connection.
  • Base URL - The base URL of your API (e.g. https://api.example.com).
  • Client ID - The unique identifier for your application as provided by your OAuth provider during app registration.
  • Client secret - The confidential secret key for your application as provided by your OAuth provider.
  • Token URL - The token endpoint URL where authorization codes or credentials are exchanged for access tokens as provided by your OAuth provider (e.g. https://login.example.com/oauth2/token).
  • Scope - The required OAuth scopes based on your API provider or integration needs.

Additional configuration:

  • Refresh interval - Time in seconds between OAuth token refresh attempts.
  • OAuth basic header - Enable to send Client ID and Secret as a basic authentication header during OAuth token exchange. Most providers need this enabled.

OAuth 2.0 パスワード

以下の詳細情報を指定します。

  • Connection name - A descriptive name to help you identify this connection.
  • Base URL - The base URL of your API (e.g. https://api.example.com).
  • Username - The end-user's username credential for authentication.
  • Password - The end-user's password credential for authentication.
  • Client ID - The unique identifier for your application as provided by your OAuth provider during app registration.
  • Client secret - The confidential secret key for your application as provided by your OAuth provider.
  • Authorization URL - The full authorization endpoint URL as provided by your OAuth provider (e.g. https://login.example.com/oauth2/authorize).
  • Token URL - The token endpoint URL where authorization codes or credentials are exchanged for access tokens as provided by your OAuth provider (e.g. https://login.example.com/oauth2/token).
  • Scope - The required OAuth scopes based on your API provider or integration needs.

Additional configuration:

  • Refresh token URL - The refresh token endpoint URL as provided by your OAuth provider (e.g. https://example.com/docs/oauth/refresh).
  • Token revoke URL - The token revocation endpoint URL as provided by your OAuth provider (https://example.com/docs/oauth/revoke).
  • Refresh interval - Time in seconds between OAuth token refresh attempts.
  • OAuth basic header - Enable to send Client ID and Secret as a basic authentication header during OAuth token exchange. Most providers need this enabled.

基本認証

以下の詳細情報を指定します。

  • Connection name - A descriptive name to help you identify this connection.
  • Base URL - The base URL of your API (e.g. https://api.example.com).
  • Username - The username credential for your API account.
  • Password - The password credential for your API account.

Additional configuration:

  • Authentication validation API - Enter the relative path that will be used to verify your authentication credentials (e.g. /api/v1/me, /user/profile, /auth/validate). This API route should return a successful response when your credentials are valid.

API キー

以下の詳細情報を指定します。

  • Connection name - A descriptive name to help you identify this connection.
  • Base URL - The base URL of your API (e.g. https://api.example.com).
  • Parameter name - The exact name of the API key parameter as required by your API (e.g. X-API-Key, api_key, Authorization). This will be used as either a header name or query parameter name based on your selection.
  • Value - Your complete API key value as provided by your API provider. This will be securely stored and used for authentication.

Additional configuration:

  • Add to - Select whether to add the API key in the request header or as a query parameter. Header is recommended for better security.
  • Authentication validation API - Enter the relative path that will be used to verify your authentication credentials (e.g. /api/v1/me, /user/profile, /auth/validate). This API route should return a successful response when your credentials are valid.

OAuth 2.0 JWT Bearer

以下の詳細情報を指定します。

  • Connection name - A descriptive name to help you identify this connection.
  • Base URL - The base URL of your API (e.g. https://api.example.com).
  • Client ID - The unique identifier for your application as provided by your OAuth provider during app registration.
  • Client secret - The confidential secret key for your application as provided by your OAuth provider.
  • JWT base64 encoded key - Your Base64-encoded private key. Ensure you follow your API provider's instructions for key generation and encoding.
  • Authorization URL - The full authorization endpoint URL as provided by your OAuth provider (e.g. https://login.example.com/oauth2/authorize).
  • Token URL - The token endpoint URL where authorization codes or credentials are exchanged for access tokens as provided by your OAuth provider (e.g. https://login.example.com/oauth2/token).
  • Scope - The required OAuth scopes based on your API provider or integration needs.

Additional configuration:

  • Refresh token URL - The refresh token endpoint URL as provided by your OAuth provider (e.g. https://example.com/docs/oauth/refresh).
  • Token revoke URL - The token revocation endpoint URL as provided by your OAuth provider (https://example.com/docs/oauth/revoke).
  • Refresh interval - Time in seconds between OAuth token refresh attempts.
  • OAuth basic header - Enable to send Client ID and Secret as a basic authentication header during OAuth token exchange. Most providers need this enabled.

個人用アクセス トークン

以下の詳細情報を指定します。

  • Connection name - A descriptive name to help you identify this connection.
  • Base URL - The base URL of your API (e.g. https://api.example.com).
  • Token prefix - The token prefix (e.g. Bearer, Token, Basic). This will be combined with your token in the Authorization header. Leave empty if no prefix is required.
  • Token - The complete personal access token value. This will be combined with the token type in the Authorization header (e.g. Bearer your-token-here).

Additional configuration:

  • Authentication validation API - Enter the relative path that will be used to verify your authentication credentials (e.g. /api/v1/me, /user/profile, /auth/validate). This API route should return a successful response when your credentials are valid.

Add the HTTP connection

  1. 左側のレールから [Integration Service] を選択します。
  2. From the Connectors list, select HTTP. You can also use the search bar to find the connector.
  3. Select the Connect to HTTP button.
  4. In the connection screen, provide the required details.
  5. [接続] を選択します。
  6. コネクションが追加されました。

このページは役に立ちましたか?

サポートを受ける
RPA について学ぶ - オートメーション コース
UiPath コミュニティ フォーラム
Uipath Logo
信頼とセキュリティ
© 2005-2025 UiPath. All rights reserved.