All Projects â†’ joaomirandasa â†’ Whats2api

joaomirandasa / Whats2api

Licence: mit
🎉 This library provide you an complete solution for WhatsApp REST API

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Whats2api

Rest Api Fuzz Testing
REST API Fuzz Testing (RAFT): Source code for self-hosted service developed for Azure, including the API, orchestration engine, and default set of security tools (including MSR's RESTler), that enables developers to embed security tooling into their CI/CD workflows
Stars: ✭ 119 (-4.03%)
Mutual labels:  rest-api
Promise Throttle
A small library to throttle promises. Useful to avoid rate limiting when using REST APIs.
Stars: ✭ 121 (-2.42%)
Mutual labels:  rest-api
Whatsasena
WhatsAsena project - Makes it easy and fun to use Whatsapp. Also first userbot for Whatsapp
Stars: ✭ 122 (-1.61%)
Mutual labels:  whatsapp
30 Days Of Python
Learn Python for the next 30 (or so) Days.
Stars: ✭ 1,748 (+1309.68%)
Mutual labels:  rest-api
Whatsapp Like Photoeditor
A library module that tries to mimic whatsapp photo editor.
Stars: ✭ 121 (-2.42%)
Mutual labels:  whatsapp
Sharer.js
🔛 🔖 Create your own social share buttons. No jquery.
Stars: ✭ 1,624 (+1209.68%)
Mutual labels:  whatsapp
Drf Api Tracking
Fork of aschn/drf-tracking so that we can maintain and release newer versions
Stars: ✭ 117 (-5.65%)
Mutual labels:  rest-api
Fipe
Tabela Fipe API 🚗💰 http://deividfortuna.github.io/fipe
Stars: ✭ 123 (-0.81%)
Mutual labels:  rest-api
Diskover Web
Web file manager, disk space usage, storage search engine and file system analytics for diskover
Stars: ✭ 121 (-2.42%)
Mutual labels:  rest-api
Icinga2
Icinga is a monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting.
Stars: ✭ 1,670 (+1246.77%)
Mutual labels:  rest-api
Ipokemon Server
iPokeMon Server.
Stars: ✭ 119 (-4.03%)
Mutual labels:  rest-api
Openapi Cli Generator
Generate a CLI from an OpenAPI 3 specification
Stars: ✭ 121 (-2.42%)
Mutual labels:  rest-api
Dato.rss
The best RSS Search experience you can find
Stars: ✭ 122 (-1.61%)
Mutual labels:  rest-api
Ios
Tinodios: Tinode Messaging Client for iOS
Stars: ✭ 119 (-4.03%)
Mutual labels:  whatsapp
Spacy Js
🎀 JavaScript API for spaCy with Python REST API
Stars: ✭ 123 (-0.81%)
Mutual labels:  rest-api
Walc
An unofficial WhatsApp Desktop client for linux systems.
Stars: ✭ 116 (-6.45%)
Mutual labels:  whatsapp
Elastic4s
Elasticsearch Scala Client - Reactive, Non Blocking, Type Safe, HTTP Client
Stars: ✭ 1,576 (+1170.97%)
Mutual labels:  rest-api
Rest
REST API generator with Node.js, Express and Mongoose
Stars: ✭ 1,663 (+1241.13%)
Mutual labels:  rest-api
Vs Deploy
Visual Studio Code extension that provides commands to deploy files of a workspace to a destination.
Stars: ✭ 123 (-0.81%)
Mutual labels:  rest-api
Whaticket
A very simple Ticket System based on WhatsApp messages, that allow multi-users in same WhatsApp account.
Stars: ✭ 120 (-3.23%)
Mutual labels:  whatsapp

WHATS2API - WhatsApp REST API

npm version

Welcome to best REST API for WhatsApp. This library provide you an complete solution for WhatsApp REST API without any necessities of code or change anything, obviously, if you want, you can contribute but give this information for us over PR. - Important to know, it's not an official solution - if you need something professional please don't use this package.

Special thanks to developers of amazing packages used here, Mohammed Shah (smashah) and Total.js (totaljs)

SETUP

This package was thought to be used as service for each connection, so you need to understand the structure of files and folders before start - please read with attention.

Each connection with WhatsApp will need an dedicated running of this, you can run a lot of connections on the same server using PM2 or forever. For better approach too we will provide you an Docker solution.

Each client is undertood as INSTANCE, we gonna set an instance NUMBER for him, to identify after if necessary. If you are running this probably you need to receive messages, the struture of receive will be over WEBHOOK post events, so you need to configure your preffered address too. (TIP: use some service as https://requestcatcher.com/ to test ). Another important thing to set is some TOKEN, this is used for protect your inbound endpoint. For a high level of changes you will need to set an MASTERKEY too, that can be used to do profound changes on server like restarts and force stops.

Configuring the enviroment

To start - download the package, open /config file and set variables below - please respect type of variables or your code will not run properly

//WhatsApp Configurations		
instance            : 83430
webhook             : http://localhost:3000
token               : j19ksi1mim1lksm12213
masterKey           : w2apiisthebestlibrary

Start the project

> npm install && node debug.js

As soon you start the project navigate to address http://localhost/{{instanceNumber}}/qrCode and wait for qrCode loads, this page also will auto refresh your qrCode each 30s, so if you does not have success on first attempt just wait and your qrCode will updeta himself. FYI this is run over WebSockets.

MultiInstances

If you are looking how to run this on multi-instances please let me introduce another way, it's better then old fashion of PM2 and multiple clients on same server(if you don't know what is pm2, dont worry it's not important). The best you can do is run each instance separated, when you realize all that primary updates will be designed thinking on this. That way you avoid troubles on production enviroment effect multiple instances. To do this we gonna use Docker - Advise you to study a little bit docker for run this propperly. (an Docker-compose is alredy prepared for use)

Docker image is available on DockerHub: https://hub.docker.com/r/joaomirandas/whats2api

You can built your own image with modifications, clone this repo to your preffered local, and run:

> docker build -t joaomirandas/whats2api .

This above command will create an container image of whats2API and prepare for run, when you feel good, just run:

> docker run --name instance1 -p 8001:8000 joaomirandas/whats2api

Documentation

Full documentation library can be found over Postman Collection, best way to share regardless of the language you prefer to use.

Run in Postman 0.0.8

Using Library

All the examples below are provided in CURL to allow as many users as possible to enjoy the solutions created, however if you use any specific language feel free to download the Postman collection here and get the code in its best language for you.

At any request you can use "chatId" or "phone" paramether but at the least one of them is necessary to works.

Sending Messages

curl --location --request POST 'localhost:8000/83430/sendMessage?token=j19ksi1mim1lksm12213' \
--header 'Content-Type: application/json' \
--data-raw '{
	"chatId":"[email protected]",
	"body": "W2API - Best REST API for WhatsApp"
}'

Sending Audios

This will be sent as attached file, it's not like an audio recorded on mobile device. Attention, at this example we use PHONE body paramether, so it's possible send requests using

curl --location --request POST 'localhost:8000/83430/sendPTT?token=j19ksi1mim1lksm12213' \
--header 'Content-Type: application/json' \
--data-raw '{
	"phone":"PHONE_NUMBER",
	"audio": "https://upload.wikimedia.org/wikipedia/en/6/68/Crescendo_example.ogg"
}'

Request response:

{
    "status": true
}

Sending Files (Image, PDF, TXT, etc..)

This will be sent as attached file, it's important pay attention on maxfilesize allowed.

curl --location --request POST 'localhost:8000/83430/sendFile?token=j19ksi1mim1lksm12213' \
--header 'Content-Type: application/json' \
--data-raw '{
	"phone":"PHONE_NUMBER",
	"body": "https://upload.wikimedia.org/wikipedia/ru/3/33/NatureCover2001.jpg",
	"filename": "NatureCover2001.jpg",
	"caption": "W2API - Best REST API for WhatsApp"
}'

Sending Location

This will send a location provided to user. Performance Operational on version 0.0.8

curl --location --request POST 'localhost:8000/83430/sendLocation?token=j19ksi1mim1lksm12213' \
--header 'Content-Type: application/json' \
--data-raw '{
	"chatId":"[email protected]",
	"lat": "51.5074",
	"lng": "0.1278",
	"address": "LONDON!"
}'

Sending Links with preview

This will send a link with thumb preview Performance operational on version 0.0.8

curl --location --request POST 'localhost:8000/83430/sendLinkPreview?token=j19ksi1mim1lksm12213' \
--header 'Content-Type: application/json' \
--header 'Content-Type: text/plain' \
--data-raw '{
	"chatId":"[email protected]",
	"link": "https://github.com/joaomirandasa/whats2api/",
	"text": "W2API - Best REST API for WhatsApp"
}'

Send Contact

This route allow you to send a lot of information within an VCard. Performance Operational on version 0.0.8

curl --location --request POST 'localhost:8000/83430/sendContact?token=j19ksi1mim1lksm12213' \
--header 'Content-Type: application/json' \
--header 'Content-Type: text/plain' \
--data-raw '{
	"chatId":"[email protected]",
	"firstName": "Joao Vitor",
	"middleName": "Miranda",
	"lastName": "Santos",
	"organization": "W2API",
	"photo": "https://avatars3.githubusercontent.com/u/29043431?s=460",
	"workPhone":"+5511995126279",
	"title": "Best API Builder",
	"url": "www.w2api.io",
	"note": "W2API - Best REST API for WhatsApp"
}'

Sending Giphy

This will send an Giphy to user based on his web address. Performance Operational on version 0.0.8

curl --location --request POST 'localhost:8000/83430/sendGiphy?token=j19ksi1mim1lksm12213' \
--header 'Content-Type: application/json' \
--data-raw '{
	"chatId":"[email protected]",
	"link": "https://media.giphy.com/media/WirhZMBF1AZVK/giphy.gif",
	"caption": "W2API - Best REST API for WhatsApp"
}'

Change your Status

This route allow you to change status information of number connected. Performance Operational on version 0.0.8

curl --location --request POST 'localhost:8000/83430/setMyStatus?token=j19ksi1mim1lksm12213' \
--header 'Content-Type: application/json' \
--data-raw '{
	"newStatus": "Work & Trust"
}'

Get Battery Level

This route allow you to check battery level of physical device running WhatsApp. Performance Operational on version 0.0.8

curl --location --request GET 'localhost:8000/83430/w2apiisthebestlibrary/batteryLevel?token=j19ksi1mim1lksm12213'

Read Instance

This route allow you get a lot of informations about instance running and number connected to them. Performance Operational on version 0.0.8

curl --location --request GET 'localhost:8000/w2apiisthebestlibrary/readInstance'

Restart Instance

This route allow you restart your instance without aceess them over CLI or SSH, this really usefull with Docker. Performance Operational on version 0.0.8

curl --location --request GET 'localhost:8000/w2apiisthebestlibrary/reloadServer'

Change Webhook

This route allow you to change webhook address on production without restart your server or instance, it's an not permanent change, so if you change this in production and restart, on your next session webhook will continue to be the old one. Tho keep this change permanent you need to change config file on root folder of library. Performance Operational on version 0.0.8

curl --location --request POST 'localhost:8000/w2apiisthebestlibrary/setWebhook' \
--header 'Content-Type: application/json' \
--data-raw '{
    "webhook": "https://example2.requestcatcher.com"
}'

Receiving files

Since version 0.0.8 it's implemented a new method to receive files, if some message is received as a file, PDF, Image or Audio your webhook will be fired containing an base64 encoded file in that format.

data:[<media type>][;charset=<character set>][;base64],<data>

But to became more aasy for who doenst know how to handle files in base64 format this library will save received files into his own cdn, so when messages contain a file, body of mesage will have an filelink address, and you can just access and get your file from there. These files as saved on /public/cdn/ and you can manage there if you preffer.

For users running into docker containers it's important realize of storage files as deletes every time you rebuild the container, for persist these files you need to create Volumes.

Security

To avoid issues with use of this library, it's not allowed start conversations, you only can answer who already talked to you. I can't garantee your number will not be blocked from WhatsApp - You need to be aware of the use you will be making of this tool, be aware you are only responsible for each and every use of this library.

Remember, be blocked from WhatsApp can be unreversible.

Contributing

I'm looking forward to seeing what you can build out of it, so if you create something using this library, please let me know. If you develop something interesting we will be waiting for your PULL REQUEST.

License

MIT

Legal

This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by WhatsApp or any of its affiliates or subsidiaries. This is an independent and unofficial software. Use at your own risk.

Cryptography Notice

This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See http://www.wassenaar.org/ for more information.

The U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this software as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software using or performing cryptographic functions with asymmetric algorithms. The form and manner of this distribution makes it eligible for export under the License Exception ENC Technology Software Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for both object code and source code.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].