Panduan ini menjelaskan cara menggunakan metode delete
pada resource Reaction
Google Chat API untuk menghapus reaksi dari pesan—seperti 👍, signIn, dan resource.
Menghapus reaksi tidak akan menghapus pesan.
Tujuan
Referensi Reaction
mewakili emoji yang dapat digunakan orang untuk bereaksi terhadap pesan, seperti 👍, widget,
dan dong.
Prasyarat
Python
- Sebuah Business atau Enterprise Akun Google Workspace yang memiliki akses ke Google Chat.
- Menyiapkan lingkungan Anda:
- Buat project Google Cloud.
- Konfigurasi layar izin OAuth.
- Aktifkan dan konfigurasikan Google Chat API dengan nama, ikon, dan deskripsi untuk aplikasi Chat Anda.
- Instal Python Library Klien Google API.
-
Membuat kredensial client ID OAuth untuk aplikasi desktop. Untuk menjalankan
sampel dalam
panduan, simpan kredensial sebagai file JSON bernama
client_secrets.json
ke direktori lokal.
- Pilih cakupan otorisasi yang mendukung autentikasi pengguna.
Menghapus reaksi
Untuk menghapus reaksi dari pesan, teruskan hal berikut dalam permintaan Anda:
- Tentukan otorisasi
chat.messages.reactions
atauchat.messages
ruang lingkup proyek. - Panggil
Metode
delete
di ResourceReaction
. - Tetapkan
name
ke nama resource reaksi yang akan dihapus.
Contoh berikut menghapus reaksi 😀 dari pesan:
Python
- Di direktori kerja, buat file bernama
chat_reaction_delete.py
. Sertakan kode berikut di
chat_reaction_delete.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"] def main(): ''' Authenticates with Chat API via user credentials, then deletes 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().delete( # The reaction to delete. # # 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. # # Replace REACTION with a reaction name. # Obtain the reaction name from the reaction resource of Chat API. name = 'spaces/SPACE/messages/MESSAGE/reactions/REACTION' ).execute() if __name__ == '__main__': main()
Dalam kode, ganti kode berikut:
SPACE
: nama ruang, yang bisa Anda dapatkan dari tindakan Metodespaces.list
di Chat API, atau dari URL ruang.MESSAGE
: nama pesan, yang bisa Anda dapatkan dari isi respons yang ditampilkan setelah membuat pesan secara asinkron dengan Chat API, atau dengan nama khusus ditetapkan ke pesan pada saat pembuatan.REACTION
: nama reaksi, yang bisa Anda dapatkan dari Metodespaces.messages.reactions.list
di Chat API atau dari isi respons yang ditampilkan setelah membuat reaksi secara asinkron dengan Chat API.
Dalam direktori kerja, build dan jalankan contoh:
python3 chat_reaction_delete.py
Jika berhasil, isi respons akan kosong, yang menunjukkan bahwa reaksi dihapus.