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

> Auth0 Dashboard を使用して、Apple Xcode で Auth0 アプリのユニバーサルリンクサポートを有効にする方法を説明します。

# Apple Xcode でユニバーサルリンクサポートを有効にする

ユニバーサルリンクでは、ドメインとアプリケーションの間に検証済みの関連付けが確立されるため、Auth0 Application の設定と iOS アプリケーションの設定を一致させる必要があります。そのためには、Apple Team ID と Bundle Identifier を Auth0 に提供する必要があります。<Tooltip tip="Auth0 Dashboard: サービスを設定するための Auth0 の主要な製品です。" cta="用語集を表示" href="/ja/docs/glossary?term=Auth0+Dashboard">Auth0 Dashboard</Tooltip> を使用して、Auth0 に登録されたアプリケーションでユニバーサルリンクサポートを有効にできます。

<div id="obtain-apple-team-id-and-bundle-identifier">
  ## Apple Team ID と Bundle Identifier を取得する
</div>

1. Apple **Team ID** を確認するには、[Apple Developer アカウントの概要ページ](https://developer.apple.com/membercenter/index.action#accountSummary)に移動します。
2. iOS アプリケーションの **Bundle Identifier** を確認するには、[Xcode プロジェクト設定](https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/ConfiguringYourApp/ConfiguringYourApp.html) ページに移動します。

<div id="provide-apple-team-id-and-bundle-identifier-to-auth0">
  ## Apple Team ID とバンドル識別子を Auth0 に設定する
</div>

1. [Dashboard > Applications > Applications](https://manage.auth0.com/#/clients) に移動し、対象のアプリケーション名を選択します。

   <Frame>
     <img src="https://mintcdn.com/translations/eVsQcTnbClN-oB7d/docs/images/cdy7uua7fh8z/1ecNwGgFQZxdP57p0tp3jT/cd608fcfae22e195b604e2707e5a848d/App_List_-_EN.png?fit=max&auto=format&n=eVsQcTnbClN-oB7d&q=85&s=dbea1d7710544fca12dda3c859a64f7c" alt="Dashboard Applications List" width="1102" height="723" data-path="docs/images/cdy7uua7fh8z/1ecNwGgFQZxdP57p0tp3jT/cd608fcfae22e195b604e2707e5a848d/App_List_-_EN.png" />
   </Frame>
2. **Settings** ページの一番下までスクロールし、**Show Advanced Settings** を選択します。
3. **Device Settings** を選択し、iOS アプリケーションの **Team ID** と **App bundler identifier** の値を入力して、**Save Changes** を選択します。

   <Frame>
     <img src="https://mintcdn.com/translations/mMSz-RNYLuOm2GmQ/docs/images/cdy7uua7fh8z/YKKPtWtswHn2FZGFSVWNw/086b32e41b3fd446ac8aa678be33648d/Device_Settings_-_EN.png?fit=max&auto=format&n=mMSz-RNYLuOm2GmQ&q=85&s=21b80f793d3c0e42848d4d52a0e5feb5" alt="Dashboard Applications Application Settings Tab Advanced Settings Device Settings Tab" width="1150" height="744" data-path="docs/images/cdy7uua7fh8z/YKKPtWtswHn2FZGFSVWNw/086b32e41b3fd446ac8aa678be33648d/Device_Settings_-_EN.png" />
   </Frame>

<div id="test-link">
  ## リンクをテスト
</div>

ブラウザーで次の URL にアクセスし、アプリケーションでユニバーサルリンク用の `apple-app-site-association` ファイルを利用できることを確認します: `{yourDomain}/apple-app-site-association`

リンクが正しく機能していれば、次の JSON が表示されます (読みやすくするために整形しています) :

```json lines theme={null}
{
  "applinks": {
    "apps": [],
    "details": [{
      "appID": "86WQXF56BC.com.auth0.Passwordless-Email",
      "paths": ["/ios/com.auth0.Passwordless-Email/*"]
    }]
  }
}
```
