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

# コネクター概要

> OAuth またはマネージドプロビジョニングを使用してアプリをサードパーティサービスに接続します

<div className="dev-docs-banner">
  <div className="dev-docs-banner-content">
    <div className="dev-docs-banner-title">
      開発者向けドキュメントを表示しています
    </div>

    <div className="dev-docs-banner-text">
      このドキュメントは、Base44 開発者プラットフォームで作業する開発者向けです。アプリエディタ内のコネクターについては、{" "}
      <a href="/Integrations/Connectors">コネクターの使用</a>を参照してください。
    </div>
  </div>
</div>

コネクターは、アプリにサードパーティサービス用の OAuth アクセストークンを提供し、それらのサービスの API を直接呼び出すために使用します。Base44 は OAuth フローと認証情報の保存を処理します。

Base44 は 2 種類のコネクタータイプをサポートしています:

* **[共有コネクター](/developers/backend/resources/connectors/shared-connectors):** 1 つのアカウントがアプリ全体に接続されます。すべてのアプリユーザーが同じトークンを共有します。会社の Slack チャンネルへの投稿や共有 Google カレンダーからの読み取りなど、サービスアカウントに最適です。
* **[アプリユーザーコネクター](/developers/backend/resources/connectors/app-user-connectors):** サインインした各アプリユーザーが自分のアカウントを接続します。各ユーザーが自分の OAuth トークンを取得します。個別のユーザーとして実行する必要があるアクション (Gmail アカウントからのメール送信、個人 LinkedIn への投稿など) に最適です。

## サポートされるサービス

以下にリストされているすべてのサービスは、共有接続とアプリユーザー接続の両方をサポートしています。セットアップ手順については、[共有コネクター](/developers/backend/resources/connectors/shared-connectors)または[アプリユーザーコネクター](/developers/backend/resources/connectors/app-user-connectors)を参照してください。

| サービス                  | タイプ識別子                  | 認証モデル   |
| --------------------- | ----------------------- | ------- |
| Airtable              | `airtable`              | OAuth   |
| BambooHR              | `bamboohr`              | OAuth   |
| Box                   | `box`                   | OAuth   |
| Calendly              | `calendly`              | OAuth   |
| ClickUp               | `clickup`               | OAuth   |
| Contentful            | `contentful`            | OAuth   |
| Discord               | `discord`               | OAuth   |
| Dropbox               | `dropbox`               | OAuth   |
| GitHub                | `github`                | OAuth   |
| GitLab                | `gitlab`                | OAuth   |
| Gmail                 | `gmail`                 | OAuth   |
| Google Analytics      | `google_analytics`      | OAuth   |
| Google BigQuery       | `googlebigquery`        | OAuth   |
| Google Calendar       | `googlecalendar`        | OAuth   |
| Google Classroom      | `google_classroom`      | OAuth   |
| Google Docs           | `googledocs`            | OAuth   |
| Google Drive          | `googledrive`           | OAuth   |
| Google Meet           | `googlemeet`            | OAuth   |
| Google Search Console | `google_search_console` | OAuth   |
| Google Sheets         | `googlesheets`          | OAuth   |
| Google Slides         | `googleslides`          | OAuth   |
| Google Tasks          | `googletasks`           | OAuth   |
| HubSpot               | `hubspot`               | OAuth   |
| Hugging Face          | `hugging_face`          | OAuth   |
| Instagram Business    | `instagram`             | OAuth   |
| Linear                | `linear`                | OAuth   |
| LinkedIn              | `linkedin`              | OAuth   |
| Microsoft Teams       | `microsoft_teams`       | OAuth   |
| Microsoft OneDrive    | `one_drive`             | OAuth   |
| Notion                | `notion`                | OAuth   |
| Outlook               | `outlook`               | OAuth   |
| Salesforce            | `salesforce`            | OAuth   |
| SharePoint            | `share_point`           | OAuth   |
| Slack User            | `slack`                 | OAuth   |
| Slack Bot             | `slackbot`              | OAuth   |
| Splitwise             | `splitwise`             | OAuth   |
| Stripe                | `stripe`                | Managed |
| Supabase              | `supabase`              | OAuth   |
| TikTok                | `tiktok`                | OAuth   |
| Typeform              | `typeform`              | OAuth   |
| Wix                   | `wix`                   | OAuth   |
| Wrike                 | `wrike`                 | OAuth   |

<Tip>
  [`connectors list-available`](/developers/references/cli/commands/connectors-list-available) を実行して、最新の利用可能なインテグレーションを確認できます。これには説明と必要な接続設定フィールドが含まれます。
</Tip>

各サービスがリクエストする可能性のある OAuth スコープについては、[コネクターの権限とスコープ](/Integrations/Connectors#connector-permissions)を参照してください。

## 関連項目

* [Shared connectors](/developers/backend/resources/connectors/shared-connectors)
* [App user connectors](/developers/backend/resources/connectors/app-user-connectors)
* [SDK connectors reference](/developers/references/sdk/docs/interfaces/connectors)
* [connectors list-available](/developers/references/cli/commands/connectors-list-available)
* [connectors pull](/developers/references/cli/commands/connectors-pull)
* [connectors push](/developers/references/cli/commands/connectors-push)
* [deploy](/developers/references/cli/commands/deploy)

<Note>このページは AI を使用して翻訳されました。最も正確で最新の情報については、[英語版](/) を参照してください。 </Note>
