Skip to content

This repository is developed by Zipa Tech, it covers a short documentation on how to freely send Whats App texts such as OTP's, Monitor Server Logging Info and other cool stuffs

Notifications You must be signed in to change notification settings

zipa-tech/whatsapp-message

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 

Repository files navigation

Made in Tanzania

Free WhatsApp Messages API UDICTI TCMS-CRDB BootCamp 2022

Use Case

  1. Sending OTPs, Short Messages
  2. Monitoring Software Actions like Logging Info's
  3. Sending Anonymous Messages. to people

NOTE

API

GET https://crdb.zipa.tech/zipa-message/receiver-phone/your-message

Install requirements

# install requests
$ pip3 install requests

# confirm if installed and see version
$ python3 -m  requests --version

Exmaple on how to send WhatsApp OTP's

## Check your versions on your terminal
>>> import requests

# define message requirements
>>> otp_token = 878778

# include Country code without plus +
>>> receiver_phone = "255718017738"

# view message
>>> my_message   = "Hello Friend, Your WhatsApp OTP token is {}".format(otp_token)
>>> my_message
... "Hello Friend, Your WhatsApp OTP token is 878778"

# view link
>>> link = "https://crdb.zipa.tech/zipa-message/{}/{}/".format(receiver_phone, my_message)
>>> link
... "https://crdb.zipa.tech/zipa-message/255718017738/Hello Friend, Your WhatsApp OTP token is 878778

# send your message
>>> response = requests.get(link)
>>> response
... {"success":True}

All the credit

  1. Zipa Tech
  2. kalokola
  3. Our Trainers & Coachs.
  4. TCMS CRDB Class 2022.

About

This repository is developed by Zipa Tech, it covers a short documentation on how to freely send Whats App texts such as OTP's, Monitor Server Logging Info and other cool stuffs

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published