python-whatsapp-bot
python-whatsapp-bot copied to clipboard
Send WhatsApp message to any number
In whatsapp_utils.py
module the function process_whatsapp_message(body)
gets the wa_id
parameter, but in line 92 we sent the response to the hardcoded environment parameter "RECIPIENT_WAID"
.
In order to answer to any number that send us a message, get_text_message_input(current_app.config["RECIPIENT_WAID"], response)
should change to get_text_message_input(wa_id, response)
?
Or is there another way to respond to any number?