I could not find an example online of how to send Whatsapp indicator to twilio conversation using Python.
Does somebody have an example of how to implement this, please?
from twilio.rest import Client
api_key = "XXXXX"api_secret = "YYYYY"
account_sid = "RRRRRR"
conversation_sid = 'AAAAA'
participant_sid = 'BBBBB'
client = Client(api_key, api_secret, account_sid)
conversation = client.conversations.v1.conversations(conversation_sid).fetch() conversation.typing()
I tried was a lots of variations of this, but none of them worked.]
New contributor
Rodrigo Celoto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.