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

# Teams統合マッピング

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

[Teams][2]統合マッピングAPIの使用を開始する前に、以下の手順を実行してください。

## 前提条件

* 管理者または共同管理者のロール
* [Box for Microsoft Teams][1]統合がインストールされていること

## Boxアプリケーションの作成

1. [Box開発者コンソール][3]で、<Link href="/guides/authentication/oauth2/oauth2-setup">OAuth認証を使用するPlatformアプリ</Link>を作成します。
2. アプリケーションを開き、\[**構成**] > \[**必須のアクセススコープ**] で \[**Enterpriseのプロパティを管理する**] アプリケーションスコープを有効にします。

## 統合マッピングリクエストの承認

1. 前提条件の1つとして作成した<Link href="/guides/applications/platform-apps/index">Platformアプリ</Link>に移動します。
2. <Link href="/guides/authentication/tokens/developer-tokens">開発者トークン</Link>を生成し、次のように各リクエストのHTTPヘッダーに追加します。

```bash theme={null}
Authorization: Bearer {developer_token}
```

<Info>
  開発者トークンの有効期限は60分です。その時間が経過した後は、再度生成する必要があります。
</Info>

[1]: https://support.box.com/hc/en-us/articles/360050737154-Assigning-a-Default-Box-Folder-to-a-Teams-Channel-or-Chat

[2]: https://support.box.com/hc/en-us/articles/360044667034-Introducing-Box-for-Microsoft-Teams

[3]: https://app.box.com/developers/console
