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

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

# Freshdesk を SAML サービスプロバイダーとして設定する

Freshdesk では、次の <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. **設定** タブで、**Application Callback URL** を `https://{FD Domain}.freshdesk.com/login/saml` に設定します。

   <Frame>
     <img src="https://mintcdn.com/docs-dev-actions-modules-ga/VoHcLQmUhcioCx43/docs/images/cdy7uua7fh8z/6dJgYkcOgMZ73HVTkAWt1x/fe9dbbf306e6c587cb3326c00a3b4e1f/2025-02-27_13-59-00.png?fit=max&auto=format&n=VoHcLQmUhcioCx43&q=85&s=175c052c46f26c794bfb65cd37d1f7da" 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>

   1. 次の場所で確認できます:
      **Freshworks Dashboard > Security > SAML SSO > Assertion Consumer Service(ACS) URL**
   2. audience は次の場所で確認できます:
      **Freshworks Dashboard > Security > SAML SSO > Service Provider(SP) Entity ID URL**

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

   ```json lines theme={null}
   {
         "audience": "https://{FD Domain}.freshworks.com/sp/SAML/{xxxxxxxxxxxxxxxxxxx}/metadata",
         "mappings": {
       "email": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
       "given_name": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname",
       "family_name": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname"
         },
         "createUpnClaim": false,
         "passthroughClaimsWithNoMapping": false,
         "mapUnknownClaimsAsIs": false,
         "mapIdentities": false,
         "nameIdentifierFormat": "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress",
         "nameIdentifierProbes": [
       "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"
         ]
       }
   ```

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

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

   <Frame>
     <img src="https://mintcdn.com/docs-dev-actions-modules-ga/ejCUjmhOatcNpy6n/docs/images/cdy7uua7fh8z/3T90BDpyTXFUWDp1JkncBU/86bdba6bed8130b34b42b25c9bf2d232/dashboard-applications-applications-addons-saml2-web-app-usage.png?fit=max&auto=format&n=ejCUjmhOatcNpy6n&q=85&s=cd60d13ee0fb620efa172457e3747fb7" 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>
