suptest / whatsapp_client.py
John Landry
return message
220afd8
raw
history blame
No virus
1.89 kB
# whatsapp_client.py
import os
import requests
from dotenv import load_dotenv
load_dotenv()
class WhatsAppWrapper:
API_URL = "https://graph.facebook.com/v19.0/"
WHATSAPP_API_TOKEN = os.environ.get("WHATSAPP_API_TOKEN")
WHATSAPP_CLOUD_NUMBER_ID = os.environ.get("WHATSAPP_CLOUD_NUMBER_ID")
def __init__(self):
self.headers = {
"Authorization": f"Bearer {self.WHATSAPP_API_TOKEN}",
"Content-Type": "application/json",
}
self.API_URL = self.API_URL + self.WHATSAPP_CLOUD_NUMBER_ID
def send_template_message(self, template_name, language_code, phone_number):
payload = {
"messaging_product": "whatsapp",
"to": phone_number,
"type": "template",
"template": {
"name": template_name,
"language": {
"code": language_code
}
}
}
response = requests.post(f"{self.API_URL}/messages", json=payload,headers=self.headers)
print(response)
assert response.status_code == 200, "Error sending message"
return response.status_code
def send_text_message(self,message, phone_number):
payload = {
"messaging_product": 'whatsapp',
"to": phone_number,
"type": "text",
"text": {
"preview_url": False,
"body": message
}
}
response = requests.post(f"{self.API_URL}/messages", json=payload,headers=self.headers)
print(response.status_code)
print(response.text)
assert response.status_code == 200, "Error sending message"
return response.status_code
if __name__ == "__main__":
client = WhatsAppWrapper()
# send a template message
client.send_template_message("hello_world", "en_US", "+15127404620")