עדכון מצב הקריאה למרחב המשותף של המשתמש

במדריך הזה מוסבר איך להשתמש בשיטה updateSpaceReadState משאב SpaceReadState ב-Google Chat API לסימון מרחבים ככאלה ש'כבר קראתי' או 'עוד לא קראתי'.

משאב אחד (SpaceReadState) הוא משאב סינגלטון שמייצג פרטים על ההודעה האחרונה שנקראה של משתמש מסוים במרחב ב-Google Chat.

דרישות מוקדמות

Python

  • Python 3.6 ומעלה
  • הכלי לניהול חבילות pip
  • ספריות הלקוח העדכניות של Google. כדי להתקין או לעדכן אותם, מריצים את הפקודה הבאה בממשק שורת הפקודה:
    pip3 install --upgrade google-api-python-client google-auth-oauthlib
    

Node.js

  • Node.js 14 ומעלה
  • ה-npm כלי לניהול חבילות
  • ספריות הלקוח העדכניות של Google. כדי להתקין או לעדכן אותם, מריצים את הפקודה הבאה בממשק שורת הפקודה:
    npm install @google-cloud/local-auth @googleapis/chat
    

Apps Script

עדכון מצב קריאת המרחב המשותף של המשתמש שמתקשר

כדי לעדכן את מצב הקריאה של משתמש במרחב משותף, צריך לכלול את הפקודה הבאה: הבקשה שלך:

  • מציינים את היקף ההרשאה chat.users.readstate.
  • קוראים לפונקציה שיטת updateSpaceReadState ב משאב SpaceReadState.
  • צריך להעביר את name של מצב הקריאה של המרחב כדי לקבל, כולל מזהה משתמש או כינוי ומזהה מרחב משותף. קבלת מצב קריאה של רווח תומכת רק בקבלת הקריאה של המשתמש ששלח את הקריאה, שמצוין על ידי הגדרה של אחד הבאים:
    • כתובת האימייל החלופית me. לדוגמה, users/me/spaces/SPACE/spaceReadState.
    • כתובת האימייל של המשתמש שמתקשר ב-Workspace. לדוגמה, users/user@example.com/spaces/SPACE/spaceReadState.
    • מזהה המשתמש של המשתמש שמתקשר. לדוגמה, users/USER/spaces/SPACE/spaceReadState.
  • מעבירים את updateMask, שמציין את ההיבטים של מצב הקריאה של המרחב שתומך בנתיבי השדות הבאים:
    • lastReadTime: השעה שבה מצב הקריאה במרחב של המשתמש עודכן. בדרך כלל היא תואמת לחותמת הזמן של ההודעה האחרונה שנקראה, או חותמת זמן שציין המשתמש כדי לסמן את מיקום הקריאה האחרון המרחב המשותף. כשהlastReadTime הוא לפני מועד היצירה של ההודעה האחרונה, המרחב המשותף מופיע בתור 'עוד לא קראתי' בממשק המשתמש. כדי לסמן שהמרחב המשותף נקראו, צריך להגדיר lastReadTime לכל ערך מאוחר יותר (גדול יותר) מיצירת ההודעה האחרונה בזמן האימון. הפונקציה lastReadTime מאלצת להתאים לשעת היצירה של ההודעה האחרונה. חשוב לזכור שמצב הקריאה של המרחב משפיע רק על מצב הקריאה של הודעות גלויים בשיחה שבמרחב המשותף ברמה העליונה. התשובות בשרשורים לא מושפעים מחותמת הזמן הזו, ומסתמכים במקום זאת על מצב הקריאה של השרשור.

בדוגמה הבאה מעדכנים את מצב קריאת המרחב של המשתמש שמתקשר:

Python

  1. בספריית העבודה, יוצרים קובץ בשם chat_spaceReadState_update.py
  2. צריך לכלול את הקוד הבא ב-chat_spaceReadState_update.py:

    from google_auth_oauthlib.flow import InstalledAppFlow
    from googleapiclient.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.users.readstate"]
    
    def main():
        '''
        Authenticates with Chat API via user credentials,
        then updates the space read state for the calling user.
        '''
    
        # Authenticate with Google Workspace
        # and get user authorization.
        flow = InstalledAppFlow.from_client_secrets_file(
                          'client_secrets.json', SCOPES)
        creds = flow.run_local_server()
    
        # Build a service endpoint for Chat API.
        chat = build('chat', 'v1', credentials=creds)
    
        # Use the service endpoint to call Chat API.
        result = chat.users().spaces().updateSpaceReadState(
    
            # The space read state to update.
            #
            # Replace USER with the calling user's ID, Workspace email,
            # or the alias me.
            #
            # Replace SPACE with a space name.
            # Obtain the space name from the spaces resource of Chat API,
            # or from a space's URL.
            name='users/me/spaces/SPACE/spaceReadState',
            updateMask='lastReadTime',
            body={'lastReadTime': f'{datetime.datetime(2000, 1, 3).isoformat()}Z'}
    
          ).execute()
    
        # Prints the API's response.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. בקוד, מחליפים את מה שכתוב בשדות הבאים:

  4. בספריית העבודה, יוצרים ומריצים את הדוגמה:

    python3 chat_spaceReadState_update.py
    

Node.js

  1. בספריית העבודה, יוצרים קובץ בשם chat_spaceReadState_update.js
  2. צריך לכלול את הקוד הבא ב-chat_spaceReadState_update:

    const chat = require('@googleapis/chat');
    const {authenticate} = require('@google-cloud/local-auth');
    
    /**
    * Authenticates with Chat API via user credentials,
    * then updates the space read state for the calling user.
    * @return {!Promise<!Object>}
    */
    async function updateSpaceReadState() {
    
      /**
      * Authenticate with Google Workspace
      * and get user authorization.
      */
      const scopes = [
        'https://www.googleapis.com/auth/chat.users.readstate',
      ];
    
      const authClient =
          await authenticate({scopes, keyfilePath: 'client_secrets.json'});
    
      /**
      * Build a service endpoint for Chat API.
      */
      const chatClient = await chat.chat({version: 'v1', auth: authClient});
    
      /**
      * Use the service endpoint to call Chat API.
      */
      return await chatClient.users.spaces.updateSpaceReadState({
    
        /**
        * The space read state to update.
        *
        * Replace USER with the calling user's ID, Workspace email,
        * or the alias me.
        *
        * Replace SPACE with a space name.
        * Obtain the space name from the spaces resource of Chat API,
        * or from a space's URL.
        */
        name: 'users/me/spaces/SPACE/spaceReadState',
        updateMask: 'lastReadTime',
        requestBody: {
          lastReadTime: '{datetime.datetime(2000, 1, 3).isoformat()}Z'
        }
      });
    }
    
    /**
    * Use the service endpoint to call Chat API.
    */
    getSpaceReadState().then(console.log);
    
  3. בקוד, מחליפים את מה שכתוב בשדות הבאים:

  4. בספריית העבודה, יוצרים ומריצים את הדוגמה:

    node chat_spaceReadState_update.js
    

Apps Script

בדוגמה הזו מתבצעת קריאה ל-Chat API באמצעות שירות Chat מתקדם.

  1. מוסיפים את היקף ההרשאה chat.users.readstate אל הקובץ appsscript.json של פרויקט Apps Script:

    "oauthScopes": [
      "https://www.googleapis.com/auth/chat.users.readstate"
    ]
    
  2. מוסיפים פונקציה כמו זו לפרויקט Apps Script קוד:

    /**
    * Authenticates with Chat API via user credentials,
    * then updates the space read state for the calling user.
    * @param {string} spaceReadStateName The resource name of the space read state.
    */
    function updateSpaceReadState(spaceReadStateName) {
      try {
        const time = new Date('January 1, 2000')).toJSON();
        const body = {'lastReadTime': time};
        Chat.Users.Spaces.updateSpaceReadState(spaceReadStateName, body);
      } catch (err) {
        // TODO (developer) - Handle exception
        console.log('Failed to update read state with error %s', err.message);
      }
    }
    

Google Chat API מעדכן את מצב קריאת המרחב שצוין ומחזיר מופע של משאב אחד (SpaceReadState).