> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-feat-init-gt-translations.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Atlassian 向けに SAML2 Web App アドオンを使用して、Auth0 をアイデンティティプロバイダーとして設定する方法を説明します。

# Atlassian を SAML Service Provider として設定する

Atlassian には、次の <Tooltip tip="Security Assertion Markup Language (SAML): パスワードを使わずに 2 者間で認証情報をやり取りできる標準化されたプロトコル。" cta="用語集を見る" href="/docs/ja-jp/glossary?term=SAML">SAML</Tooltip> 設定を使用します。

1. [Auth0 Dashboard > アプリケーション > アプリケーション](https://manage.auth0.com/#/applications) に移動し、新しいアプリケーションを作成するか、更新するアプリケーションの名前をクリックします。

2. **Addons** タブに移動し、**SAML2 Web App** トグルを有効にします。

3. **Settings** タブで、[Atlassian Admin dashboard](https://admin.atlassian.com/) の **SP Assertion Consumer Service URL** の値を **Application Callback URL** に設定します。

   <Frame>
     <img src="https://mintcdn.com/docs-dev-feat-init-gt-translations/ga3rC1_4s-OF6Vr-/docs/images/cdy7uua7fh8z/6dJgYkcOgMZ73HVTkAWt1x/fe9dbbf306e6c587cb3326c00a3b4e1f/2025-02-27_13-59-00.png?fit=max&auto=format&n=ga3rC1_4s-OF6Vr-&q=85&s=bb132716d1c660444f9f40fa5408f573" alt="Dashboard Applications Applications Addons Tab SAML2 Web App Settings Tab" width="606" height="757" data-path="docs/images/cdy7uua7fh8z/6dJgYkcOgMZ73HVTkAWt1x/fe9dbbf306e6c587cb3326c00a3b4e1f/2025-02-27_13-59-00.png" />
   </Frame>

4. 次のコードを **Settings** テキストボックスに貼り付け、**Debug** をクリックします。

   ```json lines theme={null}
   {
     "mappings": {
       "user_id": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier",
       "given_name": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname",
       "family_name": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname"
     },
     "nameIdentifierProbes": [
       "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
       "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier",
       "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name"
     ],
     "nameIdentifierFormat": "urn:oasis:names:tc:SAML:2.0:nameid-format:email"
   }
   ```

5. タブの一番下までスクロールして、**Enable** をクリックします。

6. **Usage** タブで **Identity Provider Metadata** を見つけ、**Download** をクリックしてメタデータファイルをダウンロードします。このファイルは、Auth0 をアイデンティティプロバイダー (IdP) として設定するときに必要です。

   <Frame>
     <img src="https://mintcdn.com/docs-dev-feat-init-gt-translations/k7ye6-pv0VL5gE4A/docs/images/cdy7uua7fh8z/3T90BDpyTXFUWDp1JkncBU/86bdba6bed8130b34b42b25c9bf2d232/dashboard-applications-applications-addons-saml2-web-app-usage.png?fit=max&auto=format&n=k7ye6-pv0VL5gE4A&q=85&s=6e6fc850eefcaa960d89e7be5a8c1e02" alt="Dashboard Applications Applications Addons Tab SAML2 Web App Usage Tab" width="400" height="440" data-path="docs/images/cdy7uua7fh8z/3T90BDpyTXFUWDp1JkncBU/86bdba6bed8130b34b42b25c9bf2d232/dashboard-applications-applications-addons-saml2-web-app-usage.png" />
   </Frame>
