Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mnkgrover08-zz/whatsapp_automation
Whatsapp Automation is a collection of APIs that interact with WhatsApp messenger running in an Android emulator, allowing developers to build projects that automate sending and receiving messages, adding new contacts and broadcasting messages multiple contacts.
https://github.com/mnkgrover08-zz/whatsapp_automation
Last synced: 12 days ago
JSON representation
Whatsapp Automation is a collection of APIs that interact with WhatsApp messenger running in an Android emulator, allowing developers to build projects that automate sending and receiving messages, adding new contacts and broadcasting messages multiple contacts.
- Host: GitHub
- URL: https://github.com/mnkgrover08-zz/whatsapp_automation
- Owner: mnkgrover08-zz
- License: gpl-3.0
- Created: 2018-07-31T10:40:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-09T16:59:15.000Z (over 3 years ago)
- Last Synced: 2024-04-06T22:33:08.773Z (7 months ago)
- Language: Python
- Homepage:
- Size: 8.39 MB
- Stars: 201
- Watchers: 17
- Forks: 62
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-security-collection - **168**星
README
# Whatsapp Automation for sending and recieving messages
Whatsapp Automation is a collection of APIs that interact with WhatsApp messenger running in an Android emulator, allowing developers to build projects that automate sending and receiving messages, adding new contacts and broadcasting messages multiple contacts.
The project uses Selinium, Appium, Python and Android Virtual Device Emulator.
# Demo Video..
[![WhatsApp Automation Demo Video](https://i.ytimg.com/vi/TRFLzbDw80k/hqdefault.jpg)](https://www.youtube.com/watch?v=TRFLzbDw80k)
# Requirements:
1. java
2. Android Studio & Android Emulator setup with latest Android version
3. Appium Server to interact with Emulator
4. python environment for running Flask
5. RabbitMQ for maintaining queue system for incoming requests# Setting up:
# [Configuration]
Edit configs/dev.cfg file with your mysql credentials, RabbitMQ credentials and Queue names created.
Queue names needs to be created prior to running.
1. Create Queue with appropriate name.
2. Create Exchange with appropriate name.
3. Bind Exchange with Queue and make routing key in format (queue_name.*) and exchange in format (queue_name.exchange)# Easy way
Complete Rabbit-MQ setting file is attached in root with name rabbit_mq_config.json Just import it and you are good to go.
[queue_name]
single_message=whatsapp_singlemessage_queue
broadcast_message=whatsapp_broadcastmessage_queue
add_contact=whatsapp_newcontact_listener_queue
listen_message=whatsapp_messagelistener_queue# Attached are the Screenshot for reference:
![Rabbit MQ 1](https://raw.githubusercontent.com/mnkgrover08/whatsapp_automation/master/assets/rabbit-mq-1.png)
![Rabbit MQ 2](https://raw.githubusercontent.com/mnkgrover08/whatsapp_automation/master/assets/rabbit-mq-2.png)
# After Configuration is done, here are the steps for running
1. Make a virtulenv for your project
2. Once you have activated your virtualenv, install the dependencies with command (pip install -r whatsapp_pip_requirement.txt)
3. Now you need to start the emulator first via command line (./Android/Sdk/emulator/emulator -avd pixel_1). pixel_1 is my avd name
4. You need to start the appium server with default capabilities set as ("noReset"="true"). cmd: appium --default-capabilities '{"noReset": "True"}'
5. Once both Emulator and Appium are running, Now you will run your main app.py file.
6. Specify the environment by typing (export ENV=dev) in terminal, So that dev.cfg is read for configuration.
7. Type (python app.py) to run main flask application
8. Now similarly open new tabs, activate virtual env and export the dev environment. Then run (python single_message_producer.py). RabbitMQ consumer to listen to single message queue.
9. ( python add_new_contact_producer.py) (python broadcast_message_producer.py) (python new_message_listener_producer.py)Now at this point you have your Android Virtual Emulator Running, Appium running, Flask running, and rabbit MQ with workers running.
For the very first time you will need to setup Whatsapp manually with some Mobile Number with which it will be sending Messages. You need to verify OTP for Whatsapp and just set it up for use.
Now here are the Apis exposed by this project with which everything will be automated.
# Log Files config:
Make the necessary log files in directory for error logging.
sudo mkdir -p /var/www/whatsapp_api
sudo chmod -R 777 /var/www/whatsapp_api
sudo touch /var/www/whatsapp_single_worker.log
sudo chmod 777 /var/www/whatsapp_single_worker.log
sudo touch /var/www/whatsapp_single_consumer.log
sudo chmod 777 /var/www/whatsapp_single_consumer.log
sudo touch /var/log/whatsapp_api/api.log
sudo chmod 777 /var/log/whatsapp_api/api.log# Adding contact in Google Contacts APP
URL : http://127.0.0.1:5000/api/v0.1/add_new_contact
TYPE : POST
HEADERS :
Content-Type:application/json
BODY :
{"mobile_number":"+91 XXXXX XXXXX","emulator_name":"pixel_1"}
RESPONSE :
{
"corr_id": "767ae095-0066-49fb-b955-063286ceed1e",
"message": "Singal received for Adding Contact",
"status": "1"
}# Sending Single Message via Whatsapp
URL : http://127.0.0.1:5000/api/v0.1/send_single_message
TYPE: POST
HEADERS :
Content-Type:application/json
BODY :
{"mobile_number":"+91 XXXXX XXXXX","emulator_name":"pixel_1","message_body":"Hi Mayank! How have you been, its been years since we talked."}
Response :
{
"corr_id": "78f21f25-b781-4312-87e5-ebcd73e9b67e",
"message": "Singal received for sending message",
"status": "1"
}# Sending Broadcast Message via Whatsapp
URL : http://127.0.0.1:5000/api/v0.1/send_broadcast_message
TYPE : POST
HEADERS :
Content-Type:application/json
BODY :
{"mobile_number_list":["+91 XXXXX XXXXX","+91 XXXXX XXXXX"],"emulator_name":"pixel_1","message_body":"Hey guys! Enjoy the game!"}
RESPONSE :
{
"corr_id": "ea8894c1-8193-46de-8269-033060135791",
"message": "Singal received for sending message",
"status": "1"
}# Listen New Incoming Message via Whatsapp
URL : http://127.0.0.1:5000/api/v0.1/listen_new_message
TYPE : POST
HEADERS:
Content-Type:application/json
BODY :
{"special_code":"e3gi8d2i8d2382@@#"}
RESPONSE :
{
"corr_id": "a2952cc1-0703-4362-9740-88ede47391cb",
"message": "Singal received for listening message",
"status": "1"
}# Points to Remember:
1. Android Version and Whatsapp Version needs to taken care because code is written specific to versions. you can go to
workers folder and edit files accordingly to change your platform version and activity class.
Like
Current Code has:desired_caps['platformName'] = 'Android'
desired_caps['platformVersion'] = '9'
desired_caps['deviceName'] = 'emulator-5554'
desired_caps['appPackage'] = 'com.whatsapp'
desired_caps['appActivity'] = '.Main'Android Version is Android-28
![Rabbit MQ 1](https://raw.githubusercontent.com/mnkgrover08/whatsapp_automation/master/image-1.png)
# Note: This is just an Experimental Demo which is not intended to voilate any Terms and Conditions of Whatsapp