> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.generaltranslation.app/llms.txt
> Use this file to discover all available pages before exploring further.

# PARとJARを使った認可コードフロー

> 認可コードフローでPARとJARを使う方法を説明します。

プッシュ認可要求（PAR）と<Tooltip data-tooltip-id="react-containers-DefinitionTooltip-3" href="/docs/ja-JP/ja-jp/glossary?term=json-web-token" tip="JSON Web Token（JWT）: 二者間のクレームを安全に表現するために使用される標準IDトークン形式（および多くの場合、アクセストークン形式）。" cta="用語集の表示">JWT</Tooltip>-セキュア認可要求（JAR）を一緒に使うと、認可フローでより一層高水準のセキュリティレベルを提供できます。PARはクライアントに認可要求に対する機密性と完全性の保護を提供し、JARは否認防止保護を提供します。

<div id="how-to-use-par-and-jar-together">
  ### PARとJARを一緒に使う方法
</div>

PARとJARを一緒に使うには、[JAR要求を作成後](/docs/ja-JP/ja-jp/get-started/authentication-and-authorization-flow/authorization-code-flow/authorization-code-flow-with-jar)、`/authorize`エンドポイントを呼び出す代わりに、PARエンドポイントへの要求をポストします。その後、PARエンドポイントが`request_uri`を返すので、それを使って[通常のPARフロー](/docs/ja-JP/ja-jp/get-started/authentication-and-authorization-flow/authorization-code-flow/authorization-code-flow-with-par)の時と同様、`/authorize`エンドポイントを呼び出せます。

以下のcURL要求では、PARとJARを一緒に使用しています：

```bash lines theme={null}
curl --location 'https://your_tenant.auth0.com/oauth/par' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'client_id=[YOUR CLIENT ID]' \
--data-urlencode 'client_secret=[YOUR CLIENT SECRET]' \
--data-urlencode 'request=[JWT]'
```

<div id="learn-more">
  ## もっと詳しく
</div>

* [Pushed Authorization Requests（PAR）を構成する](/docs/ja-JP/ja-jp/get-started/applications/configure-par)
* [JWT-Secured Authorization Requests（JAR）を使った認可コードフロー](/docs/ja-JP/ja-jp/get-started/authentication-and-authorization-flow/authorization-code-flow/authorization-code-flow-with-jar)
