Coder Social home page Coder Social logo

mrwmartins / whatsapp-api-nodejs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from salman0ansari/whatsapp-api-nodejs

0.0 0.0 0.0 728 KB

RESTful WhatsApp API with Multiple Device Support

Shell 1.38% JavaScript 96.94% EJS 1.63% Procfile 0.05%

whatsapp-api-nodejs's Introduction

whatsapp-api-nodejs Multi Device


An implementation of Baileys as a simple RESTful API service with multi device support just download, install, and start using, simple as that.

Libraries Used

Installation

  1. Download or clone this repo.
  2. Enter to the project directory.
  3. Execute yarn install or npm install to install the dependencies.
  4. Copy .env.example to .env for set environment variables.

Configuration

Edit environment variables on .env

Important: You must set TOKEN= to a random string to protect the init route.
# ==================================
# SECURITY CONFIGURATION
# ==================================
TOKEN=RANDOM_TOKEN_HERE

# ==================================
# APPLICATION CONFIGURATION
# ==================================
PORT=3333

# ==================================
# DATABASE CONFIGURATION
# ==================================
MONGODB_ENABLED=false
MONGODB_URL=mongodb://127.0.0.1:27017/whatsapp_api

# ==================================
# WEBHOOK CONFIGURATION
# ==================================
WEBHOOK_ENABLED=false
WEBHOOK_URL=https://webhook.site/d0122a66-18a3-432d-b63f-4772b190dd72
WEBHOOK_BASE64=false

Usage

  1. DEVELOPMENT: Execute npm run dev or yarn dev
  2. PRODUCTION: Execute npm run start or yarn start

Generate basic instance using random key

To generate an Instance Key
Using the route:

curl --location --request GET 'localhost:3333/instance/init?token=RANDOM_TOKEN_HERE' \
--data-raw ''

Generate custom instance with custom key and custom webhook

To generate a Custom Instance
Using the route:

curl --location --request GET 'localhost:3333/instance/init?token=RANDOM_TOKEN_HERE&key=CUSTOM_INSTANCE_KEY_HERE&webhook=true&webhookUrl=https://webhook.site/d7114704-97f6-4562-9a47-dcf66b07266d' \
--data-raw ''

Response:

{
    "error": false,
    "message": "Initializing successfull",
    "key": "d7e2abff-3ac8-44a9-a738-1b28e0fca8a5"
}

Using Key

Save the value of the key from response. Then use this value to call all the routes.

Examples

# Get QR Code
# /instance/qr?key=KEY

curl --location --request GET 'localhost:3333/instance/qr?key=123'
# Send Message
# /message/text?key=KEY&id=PHONE-NUMBER-WITH-COUNTRY-CODE&message=MESSAGE

curl --location --request POST 'localhost:3333/message/text?key=123' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'id=919999999999' \
--data-urlencode 'message=Hello World'

See all routes here src/api/routes

Postman Docs

Legal

  • This code is in no way affiliated, authorized, maintained, sponsored or endorsed by WA(WhatsApp) or any of its affiliates or subsidiaries.
  • The official WhatsApp website can be found at https://whatsapp.com. "WhatsApp" as well as related names, marks, emblems and images are registered trademarks of their respective owners.
  • This is an independent and unofficial software Use at your own risk.
  • Do not spam people with this.

whatsapp-api-nodejs's People

Contributors

dependabot[bot] avatar devalexanderdaza avatar dv336699 avatar ryanachdiadsyah avatar salman0ansari avatar torvalds avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.