nuwasdzarrin / laravel-whatsapp-server

Simple RESTful WhatsApp API with Laravel 8

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Baileys Restful API with Laravel

An implementation of @adiwajshing/Baileys as a simple RESTful API service with multiple device support.

Credits

  1. Framework : Laravel 8
  2. Admin Panel : Crudbooster
  3. Backend Server : @ookamiiixd/baileys-api

Requirement

  1. php 7.4
  2. MySQL / MariaDB
  3. NodeJs 14 or higher

Frontend Installation

  1. First clone or download this repository:
git clone https://github.com/saifulcoder/laravel-whatsapp-server.git
  1. Enter directory project cd laravel-whatsapp-server
  2. Execute composer install to install the dependencies.
  3. Setting the database configuration, rename .env.example to .env and open file at project root directory
DB_DATABASE=**your_db_name**
DB_USERNAME=**your_db_user**
DB_PASSWORD=**password**
  1. Setting the URL backend server configuration, open .env file at project root directory
URL_WA_SERVER=http://localhost:8000
  1. Run Migration Database the following command at the terminal:
 php artisan migrate:fresh --seed

or you can import db.sql

  1. Run laravel
php artisan serve --port=80
  1. Dashboard Admin
/admin/login

default email : admin@crudbooster.com
default password : 123456

Backend Installation

Simple RESTful WhatsApp API by @ookamiiixd/baileys-api .

  1. Enter to the baileys-api-master project directory cd baileys-api-master.
  2. Execute npm i to install the dependencies.
  3. You can start the app by executing npm run start or node ..
  4. Now the endpoint should be available according to your environment variable settings. Default is at http://localhost:8000.

Backend API DOCs

The API baileys-api-master documentation is available online at here. You can also import the Postman Collection File (postman_collection.json) into your Postman App alternatively.

The server will respond in JSON format:

// Send text message
{
    receiver: '628231xxxxx',
    message: {
        text: 'Hello there!'
    }
}

// Send image
{
    receiver: '628231xxxxx',
    message: {
        image: {
            url: 'https://example.com/logo.png'
        },
        caption: 'My logo'
    }
}

// Send video
{
    receiver: '628231xxxxx',
    message: {
        video: {
            url: 'https://example.com/intro.mp4'
        },
        caption: 'My intro'
    }
}

// Send document
{
    receiver: '628231xxxxx',
    message: {
        document: {
            url: 'https://example.com/presentation.pdf'
        },
        mimetype: 'application/pdf',
        fileName: 'presentation-1.pdf'
    }
}

Functions laravel-wa-server

Multiple Device βœ”
πŸ“ Send text βœ”
Admin Panel βœ”
Multiple Users βœ”
User Privilege βœ”
API RESTFul βœ”
πŸ“ Send image, video, audio and docs βœ”
Send stickers βœ”
Send stickers GIF βœ”
Send Buttons coming soon
Send Bulk Message coming soon
Send Message with schedule coming soon
Receive message coming soon
Get Chat List coming soon
Get Chat Conversation coming soon
Webhook coming soon

Contributing

This project helps you and you want to help keep it going? Buy me a coffee:
Buy Me A Coffee
or via
https://saweria.co/saifulcoder

About

Simple RESTful WhatsApp API with Laravel 8

License:MIT License


Languages

Language:PHP 86.7%Language:Blade 12.8%Language:Shell 0.5%