สร้างพื้นที่ทำงาน

คู่มือนี้อธิบายวิธีใช้เมธอด create() ในทรัพยากร Space ของ Google Chat API เพื่อสร้างพื้นที่ทำงานที่มีชื่อ

แหล่งข้อมูล Space รายการ แสดงถึงสถานที่ที่ผู้คนและแอป Chat ส่งข้อความได้ แชร์ไฟล์ และทำงานร่วมกัน พื้นที่ทำงานมีหลายประเภทดังนี้

  • ข้อความส่วนตัว (DM) คือการสนทนาระหว่างผู้ใช้ 2 คนหรือผู้ใช้กับแอป Chat
  • แชทเป็นกลุ่มคือการสนทนาระหว่างผู้ใช้ 3 คนขึ้นไปและ แอปแชท
  • พื้นที่ทำงานที่มีชื่อเป็นพื้นที่ทำงานถาวรที่ผู้ใช้สามารถส่งข้อความ แชร์ไฟล์ และทำงานร่วมกันได้

พื้นที่ทำงานที่มีชื่อคือสถานที่ที่ผู้คนส่งข้อความ แชร์ไฟล์ และ พื้นที่ทำงานที่มีชื่ออาจมีแอปใน Chat พื้นที่ทำงานที่มีชื่อจะมีฟีเจอร์เพิ่มเติมที่การสนทนากลุ่มและข้อความส่วนตัวที่ไม่มีชื่อไม่มี เช่น ผู้จัดการพื้นที่ทำงานที่ใช้การตั้งค่าการดูแลระบบ คำอธิบาย รวมถึงเพิ่มหรือนำบุคคลและแอปออกได้ หลังจากสร้างพื้นที่ทำงานที่มีชื่อแล้ว สมาชิกคนเดียวของพื้นที่ทำงานจะเป็นผู้ใช้ที่ตรวจสอบสิทธิ์แล้ว พื้นที่ทำงานไม่มี รวมถึงบุคคลหรือแอปอื่นๆ แม้กระทั่งแอป Chat ที่สร้างมันขึ้นมาได้ หากต้องการเพิ่มสมาชิกในพื้นที่ทำงาน โปรดดู สร้างการเป็นสมาชิก

วิธีสร้างพื้นที่ทำงานที่มีชื่อที่มีสมาชิกหลายคน ซึ่งเป็นแชทเป็นกลุ่มที่ไม่มีชื่อระหว่าง ตั้งแต่ 3 คนขึ้นไป หรือการสนทนาผ่านข้อความส่วนตัวระหว่างคน 2 คน หรือ บุคคลและแอป Chat ที่เรียกใช้ Chat API - ตั้งค่าพื้นที่ทำงาน แทน

ข้อกำหนดเบื้องต้น

Node.js

  • ธุรกิจหรือองค์กร บัญชี Google Workspace ที่มีสิทธิ์เข้าถึง Google Chat

Python

  • ธุรกิจหรือองค์กร บัญชี Google Workspace ที่มีสิทธิ์เข้าถึง Google Chat

Java

  • บัญชี Google Workspace รุ่น Business หรือ Enterprise ที่มีสิทธิ์เข้าถึง Google Chat

Apps Script

  • ธุรกิจหรือองค์กร บัญชี Google Workspace ที่มีสิทธิ์เข้าถึง Google Chat

สร้างพื้นที่ทำงานที่มีชื่อในฐานะผู้ใช้

เพื่อสร้างพื้นที่ทำงานที่มีชื่อด้วย การตรวจสอบสิทธิ์ผู้ใช้, ผ่าน ต่อไปนี้ในคำขอของคุณ

  • ระบุขอบเขตการให้สิทธิ์ chat.spaces.create หรือ chat.spaces
  • เรียกใช้ CreateSpace() เมธอด การส่ง space เป็นอินสแตนซ์ของ Space ด้วยฟิลด์ต่อไปนี้
    • ตั้งค่าspaceTypeเป็น SPACE
    • 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
  • ตั้งค่า spaceType เป็น SPACE
  • ตั้งค่า displayName กับชื่อของพื้นที่ทำงานที่ผู้ใช้มองเห็นได้ ในตัวอย่างต่อไปนี้ displayName ตั้งค่าเป็น API-made
  • ระบุรหัสลูกค้าของโดเมน Google Workspace โดยใช้ช่อง customer
  • ตั้งค่าแอตทริบิวต์พื้นที่ทำงานอื่นๆ หรือไม่ก็ได้ เช่น 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 ที่คุณสร้างเพื่อสร้าง ปลายทางบริการสำหรับ Chat API

    • CUSTOMER: รหัสลูกค้าของโดเมนของพื้นที่ทำงานในรูปแบบ customer/{customer} โดยที่ {customer} คือ IDจากทรัพยากรลูกค้าของ Admin SDK วิธีสร้างพื้นที่ทำงานในองค์กร Google Workspace เดียวกันกับ ใช้แอป Chat ให้ใช้ customers/my_customer

  4. ในไดเรกทอรีการทำงาน ให้สร้างและเรียกใช้ตัวอย่างด้วยคำสั่งต่อไปนี้

    python3 chat_space_create_named_app.py
    

เปิดพื้นที่ทำงานใน Google Chat

หากต้องการไปยังพื้นที่ทำงาน ให้ใช้รหัสทรัพยากรของพื้นที่ทำงาน เพื่อสร้าง URL ของพื้นที่ทำงาน คุณจะดูรหัสทรัพยากรได้จากพื้นที่ทำงาน name ในเนื้อหาการตอบกลับของ Google Chat เช่น หากnameของพื้นที่ทำงานคือ spaces/1234567 คุณจะไปยังพื้นที่ทำงานได้โดยใช้ URL https://mail.google.com/chat/u/0/#chat/space/1234567