इस गाइड में, Reaction
संसाधन पर create
तरीके को इस्तेमाल करने का तरीका बताया गया है
का इस्तेमाल किया जा सकता है.
कॉन्टेंट बनाने
Reaction
संसाधन
इससे किसी ऐसे इमोजी का पता चलता है जिसका इस्तेमाल करके लोग किसी मैसेज पर प्रतिक्रिया दे सकते हैं. जैसे, 👍, EmailAddress,
और ×.
ज़रूरी शर्तें
Python
- कारोबार या एंटरप्राइज़ Google Workspace खाता, जिसके पास इसका ऐक्सेस है Google Chat.
- अपना एनवायरमेंट सेट अप करें:
- Google Cloud प्रोजेक्ट बनाएं.
- उस स्क्रीन को कॉन्फ़िगर करें जहां OAuth के लिए सहमति दी जाती है.
- Google Chat API को चालू और कॉन्फ़िगर करें. आइकॉन और ब्यौरा जोड़ें.
- इंस्टॉल करें Python Google API क्लाइंट लाइब्रेरी.
-
डेस्कटॉप ऐप्लिकेशन के लिए OAuth क्लाइंट आईडी क्रेडेंशियल बनाएं. सैंपल को चलाने के लिए
गाइड, क्रेडेंशियल को
client_secrets.json
नाम वाली JSON फ़ाइल के तौर पर लोकल डायरेक्ट्री.
- अनुमति देने का ऐसा स्कोप चुनें जो उपयोगकर्ता की पुष्टि करने की सुविधा देता हो.
किसी मैसेज पर प्रतिक्रिया देना
किसी मैसेज पर प्रतिक्रिया देने के लिए, इसे अपने अनुरोध:
- यह बताएं कि
chat.messages.reactions.create
,chat.messages.reactions
याchat.messages
अनुमति का दायरा. - कॉल करें
create
तरीका पूरी तरह कैसेReaction
संसाधन. - प्रतिक्रिया देने के लिए,
parent
को मैसेज के संसाधन के नाम पर सेट करें. body
(अनुरोध का मुख्य हिस्सा) कोReaction
इसमेंunicode
फ़ील्ड एक स्टैंडर्ड इमोजी है, जिसे यूनिकोड में दिखाया जाता है स्ट्रिंग.
यहां दिए गए उदाहरण में, किसी मैसेज पर प्रतिक्रिया देने के लिए कहा गया है कि यह # इमोजी है:
Python
- अपनी वर्किंग डायरेक्ट्री में,
chat_reaction_create.py
नाम की फ़ाइल बनाएं. chat_reaction_create.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.create"] def main(): ''' Authenticates with Chat API via user credentials, then creates a reaction 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().create( # The message to create a reaction 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', # The reaction to the message. body = { 'emoji': { # A standard emoji represented by a unicode string. 'unicode': '😀' } } ).execute() # Prints details about the created reaction. print(result) if __name__ == '__main__': main()
कोड में, इन्हें बदलें:
SPACE
:name
स्पेस में पोस्ट किया जाता है, जिसे आपspaces.list
तरीका या स्पेस के यूआरएल से मिलेगी.MESSAGE
: मैसेज का नाम, जिसे आप पा सकते हैं एसिंक्रोनस तरीके से मैसेज बनाने के बाद, रिस्पॉन्स वाले मुख्य हिस्से से का इस्तेमाल करें या पसंद के मुताबिक बनाया गया नाम बनाते समय एक मैसेज असाइन किया गया.
अपनी वर्किंग डायरेक्ट्री में, सैंपल बनाएं और चलाएं:
python3 chat_reaction_create.py
Chat API,
Reaction
इससे प्रतिक्रिया की जानकारी मिलती है.