Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Nell'esempio seguente, rbm_api_helper.js (non utilizzato per Python) presuppone che il
file in cui stai lavorando si trovi una directory sotto la cartella dell'app principale. Potresti dover modificare la posizione in base alla configurazione del progetto.
Il seguente codice revoca un messaggio esistente non recapitato con una biblioteca client.
Node.js
// Reference to RBM API helperconstrbmApiHelper=require('@google/rcsbusinessmessaging');// Stop the message associated with messageId from being deliveredrbmApiHelper.revokeMessage('+12223334444',messageId,function(err,response){console.log(response);});
importcom.google.rbm.RbmApiHelper;…try{// Create an instance of the RBM API helperRbmApiHelperrbmApiHelper=newRbmApiHelper();// Stop the message associated with messageId from being deliveredrbmApiHelper.revokeMessage(messageId,"+12223334444");}catch(Exceptione){e.printStackTrace();}
# Reference to RBM Python client helper and messaging object structurefromrcs_business_messagingimportrbm_service# Stop the message associated with message_id from being deliveredrbm_service.revoke('+12223334444',message_id)
usingRCSBusinessMessaging;…// Create an instance of the RBM API helperRbmApiHelperrbmApiHelper=newRbmApiHelper(credentialsFileLocation,projectId);// Stop the message associated with messageId from being deliveredrbmApiHelper.RevokeMessage(messageId,"+12223334444");
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-04-10 UTC."],[],[]]