إدراج التفاعلات مع رسالة

يوضّح هذا الدليل كيفية استخدام الطريقة list في المورد Reaction من Google Chat API لعرض التفاعلات مع رسالة، مثل 👍 و🚲 و🌞.

يمثّل مورد Reaction رمزًا تعبيريًا يمكن للمستخدمين استخدامه للتفاعل مع رسالة، مثل 👍 و🚲 و🌞.

المتطلبات الأساسية

Python

إدراج التفاعلات

لعرض التفاعلات مع رسالة، أرسِل ما يلي في طلبك:

  • حدِّد chat.messages.reactions.readonly أو chat.messages.reactions نطاق التفويض chat.messages.readonly أو chat.messages
  • عليك استدعاء [طريقة واحدة (list)]/workspace(/chat/api/reference/rest/v1/spaces.messages.reactions/list) في صفحة Reaction مورد.

يعرض المثال التالي التفاعلات مع رسالة محدّدة:

Python

  1. في دليل العمل، أنشئ ملفًا باسم chat_reactions_list.py.
  2. أدرِج الرمز التالي في chat_reactions_list.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.messages.reactions.readonly"]
    
    def main():
        '''
        Authenticates with Chat API via user credentials,
        then lists reactions to a message.
        '''
    
        # 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.spaces().messages().reactions().list(
    
            # The message to list reactions to.
            #
            # Replace SPACE with a space name.
            # Obtain the space name from the spaces resource of Chat API,
            # or from a space's URL.
            #
            # Replace MESSAGE with a message name.
            # Obtain the message name from the response body returned
            # after creating a message asynchronously with Chat REST API.
            parent = 'spaces/SPACE/messages/MESSAGE'
    
        ).execute()
    
        # Prints details about the created reactions.
        print(result)
    
    if __name__ == '__main__':
        main()
    
  3. في الرمز، استبدل ما يلي:

    • SPACE: اسم مساحة، يمكنك الحصول عليه من باستخدام spaces.list method في Chat API، أو من عنوان URL للمساحة.
    • MESSAGE: اسم رسالة يمكنك الحصول عليه من نص الاستجابة الذي تم عرضه بعد إنشاء رسالة بشكل غير متزامن باستخدام Chat API أو باستخدام اسم مخصّص المخصص للرسالة عند الإنشاء.
  4. في دليل العمل، أنشئ النموذج وشغِّله:

    python3 chat_reactions_list.py

تعرض واجهة Chat API مصفوفة من التفاعلات المقسّمة على صفحات.