スペースを作成する

このガイドでは、Google Chat API の Space リソースで create() メソッドを使用して、名前付きスペースを作成する方法について説明します。

Space リソースは、ユーザーや Chat アプリがメッセージを送信したり、ファイルを共有したり、コラボレーションしたりできる場所を表します。スペースには次の 2 種類があります。

  • ダイレクト メッセージ(DM)は、2 人のユーザー間、またはユーザーと Chat アプリ間の会話です。
  • グループ チャットは、3 人以上のユーザーと Chat アプリとの間の会話です。
  • 名前付きスペースは、メッセージの送信、ファイルの共有、 考えています

名前付きスペースは、ユーザーがメッセージの送信、ファイルの共有、コラボレーションを行う場所です。名前付きスペースに Chat 用アプリを含めることができます。名前付きスペースには、名前のないグループの会話やダイレクト メッセージにはない追加機能があります。たとえば、管理設定や説明を適用したり、ユーザーやアプリを追加または削除したりできるスペース管理者などです。名前付きスペースを作成すると、スペースのメンバーは認証済みユーザーのみになります。スペースには他のユーザーやアプリは含まれません。作成した Chat アプリも含まれません。スペースにメンバーを追加するには、以下をご覧ください。 メンバーシップを作成する

複数のメンバーが参加する名前付きスペースを作成するには、 ダイレクト メッセージでの会話、またはダイレクト メッセージでの会話に Chat アプリから Chat API - スペースを設定する してください。

前提条件

Node.js

Python

Java

Apps Script

ユーザーとして名前付きスペースを作成する

ユーザー認証を使用して名前付き空間を作成するには、リクエストで次のように渡します。

  • chat.spaces.create または chat.spaces の認可スコープを指定します。
  • 呼び出し CreateSpace() メソッドを呼び出し、spaceSpace 次のフィールドがあります
    • spaceTypeSPACEに設定しました。
    • displayName を、ユーザーに表示されるスペースの名前に設定します。
    • 必要に応じて、次のような他の属性を設定します。
      • spaceDetails - ユーザーに表示される説明と一連のガイドライン できます。
      • predefinedPermissionSettings - スペースに対して事前定義された権限。 たとえば、すべてのメンバーまたはスペースのみのスペースを メッセージを投稿できます。

名前付き空間を作成する方法は次のとおりです。

Node.js

chat/client-libraries/cloud/create-space-user-cred.js
import {createClientWithUserCredentials} from './authentication-utils.js';

const USER_AUTH_OAUTH_SCOPES = ['https://www.googleapis.com/auth/chat.spaces.create'];

// This sample shows how to create a named space with user credential
async function main() {
  // Create a client
  const chatClient = await createClientWithUserCredentials(USER_AUTH_OAUTH_SCOPES);

  // Initialize request argument(s)
  const request = {
    space: {
      spaceType: 'SPACE',
      // Replace DISPLAY_NAME here.
      displayName: 'DISPLAY_NAME'
    }
  };

  // Make the request
  const response = await chatClient.createSpace(request);

  // Handle the response
  console.log(response);
}

main().catch(console.error);

Python

chat/client-libraries/cloud/create_space_user_cred.py
from authentication_utils import create_client_with_user_credentials
from google.apps import chat_v1 as google_chat

SCOPES = ["https://www.googleapis.com/auth/chat.spaces.create"]

def create_space_with_user_cred():
    # Create a client
    client = create_client_with_user_credentials(SCOPES)

    # Initialize request argument(s)
    request = google_chat.CreateSpaceRequest(
        space = {
            "space_type": 'SPACE',
            # Replace DISPLAY_NAME here.
            "display_name": 'DISPLAY_NAME'
        }
    )

    # Make the request
    response = client.create_space(request)

    # Handle the response
    print(response)

create_space_with_user_cred()

Java

chat/client-libraries/cloud/src/main/java/com/google/workspace/api/chat/samples/CreateSpaceUserCred.java
import com.google.chat.v1.ChatServiceClient;
import com.google.chat.v1.CreateSpaceRequest;
import com.google.chat.v1.Space;

// This sample shows how to create space with user credential.
public class CreateSpaceUserCred {

  private static final String SCOPE =
    "https://www.googleapis.com/auth/chat.spaces.create";

  public static void main(String[] args) throws Exception {
    try (ChatServiceClient chatServiceClient =
        AuthenticationUtils.createClientWithUserCredentials(
          ImmutableList.of(SCOPE))) {
      CreateSpaceRequest.Builder request = CreateSpaceRequest.newBuilder()
        .setSpace(Space.newBuilder()
          .setSpaceType(Space.SpaceType.SPACE)
          // Replace DISPLAY_NAME here.
          .setDisplayName("DISPLAY_NAME"));
      Space response = chatServiceClient.createSpace(request.build());

      System.out.println(JsonFormat.printer().print(response));
    }
  }
}

Apps Script

chat/advanced-service/Main.gs
/**
 * This sample shows how to create space with user credential
 * 
 * It relies on the OAuth2 scope 'https://www.googleapis.com/auth/chat.spaces.create'
 * referenced in the manifest file (appsscript.json).
 */
function createSpaceUserCred() {
  // Initialize request argument(s)
  const space = {
    spaceType: 'SPACE',
    // TODO(developer): Replace DISPLAY_NAME here
    displayName: 'DISPLAY_NAME'
  };

  // Make the request
  const response = Chat.Spaces.create(space);

  // Handle the response
  console.log(response);
}

Chat 用アプリとして名前付きスペースを作成する

アプリの認証にはワンタイム認証が必要です 管理者の承認が必要です。

スペースにユーザーを招待または追加するには、 アプリ認証、 次のコードを追加します。

  • chat.app.spaces.create または chat.app.spaces 承認を指定する あります。
  • 呼び出し create メソッド 日付 Space リソース
  • spaceTypeSPACE に設定します。
  • displayName をスペースのユーザーに表示される名前に設定します。次の例では、displayNameAPI-made に設定されています。
  • customer フィールドを使用して Google Workspace ドメインのお客様 ID を指定します。
  • 必要に応じて、スペースの他の属性( spaceDetails (ユーザーに表示されるスペースの説明とガイドライン)。

API キーを作成する

Developer Preview API メソッドを呼び出すには、API ディスカバリ ドキュメントの非公開のデベロッパー プレビュー版を使用する必要があります。リクエストを認証するには、API キーを渡す必要があります。

API キーを作成するには、アプリの Google Cloud プロジェクトを開き、次の手順を行います。

  1. Google Cloud コンソールで、メニュー > [API とサービス] > [認証情報] に移動します。

    [認証情報] に移動

  2. [認証情報を作成] > [API キー] をクリックします。
  3. 新しい API キーが表示されます。
    • [コピー] をクリックして、アプリのコードで使用する API キーをコピーします。API キーは、プロジェクトの認証情報の [API キー] セクションでも確認できます。
    • [キーを制限] をクリックして、詳細設定を更新し、API キーの使用を制限します。詳細については、API キーの制限を適用するをご覧ください。

Chat API を呼び出すスクリプトを記述する

名前付き空間を作成する方法は次のとおりです。

Python

  1. 作業ディレクトリに chat_space_create_named_app.py という名前のファイルを作成します。
  2. chat_space_create_named_app.py に次のコードを追加します。

    from google.oauth2 import service_account
    from apiclient.discovery import build
    
    # Define your app's authorization scopes.
    # When modifying these scopes, delete the file token.json, if it exists.
    SCOPES = ["https://www.googleapis.com/auth/chat.app.spaces.create"]
    
    def main():
        '''
        Authenticates with Chat API using app authentication,
        then creates a Chat space.
        '''
    
        # Specify service account details.
        creds = (
            service_account.Credentials.from_service_account_file('credentials.json')
            .with_scopes(SCOPES)
        )
    
        # Build a service endpoint for Chat API.
        chat = build('chat', 'v1', credentials=creds, discoveryServiceUrl='https://chat.googleapis.com/$discovery/rest?version=v1&labels=DEVELOPER_PREVIEW&key=API_KEY')
    
        # Use the service endpoint to call Chat API.
        result = chat.spaces().create(
    
          # Details about the space to create.
          body = {
    
            # To create a named space, set spaceType to SPACE.
            'spaceType': 'SPACE',
    
            # The user-visible name of the space.
            'displayName': 'API-made',
    
            # The customer ID of the Workspace domain.
            'customer': 'CUSTOMER'
          }
    
          ).execute()
    
        # Prints details about the created space.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. コードの次のように置き換えます。

    • API_KEY: ビルド用に作成した API キー サービス エンドポイントとして機能します。

    • CUSTOMER: スペースのドメインのお客様 ID(customer/{customer} 形式)。ここで、{customer}Admin SDK のお客様リソースID です。Chat アプリと同じ Google Workspace 組織にスペースを作成するには、customers/my_customer を使用します。

  4. 作業ディレクトリでサンプルをビルドして実行します。

    python3 chat_space_create_named_app.py
    

Google Chat でスペースを開く

スペースに移動するには、スペースのリソース ID を使用します スペースの URL を作成します。リソース ID は、Google Chat レスポンスの本文にあるスペース name で確認できます。たとえば、スペースの namespaces/1234567 になっています。スペースに移動するには、 URL: https://mail.google.com/chat/u/0/#chat/space/1234567