Webhook Pesan Masuk

Kami mengirimkan setiap pesan masuk ke url webhook yang sudah anda set di boostifyhub.id , untuk dokumentasi lengkap webhook,anda bisa membaca di https://boostifyhub.id/https://boostifyhub.id/docs

 

Berikut contoh code menerima webhook pesan dengan PHP :

    

<?php
// Accept webhook request
header('Content-Type: application/json');

$data = json_decode(file_get_contents('php://input'), true);

if (empty($data)) {
   echo json_encode(['message' => 'empty data']);
   die;
}

// Extracting data from the webhook
$name = $data['name']; // nama whatsapp pengirim
$from = $data['from']; // nomor wa pengirim
$groupId = $data['groupId']; // id group jika pengirim adalah group, default null
$message = $data['text']; // isi pesan
$file = $data['file']; // file jika ada
$location = $data['location']; // location jika ada

// Menyimpan log pesan
file_put_contents('webhook.log', json_encode($data) . PHP_EOL, FILE_APPEND);

// Setelah menangkap pesan, anda bisa mengolah data seperti input ke database atau balas pesan dengan mengirim api

// Contoh mengirim pesan
function sendMessage($target, $message, $media = null) {
   $curl = curl_init();
   curl_setopt_array($curl, array(
       CURLOPT_URL => "https://api.boostifyhub.id/send",
       CURLOPT_RETURNTRANSFER => true,
       CURLOPT_ENCODING => "",
       CURLOPT_MAXREDIRS => 10,
       CURLOPT_TIMEOUT => 30,
       CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
       CURLOPT_CUSTOMREQUEST => "POST",
       CURLOPT_POSTFIELDS => json_encode([
           'target' => $target,
           'message' => $message,
           'media' => $media
       ]),
       CURLOPT_HTTPHEADER => array(
           "Content-Type: application/json",
           "Authorization: Bearer YOUR_API_KEY" // replace with your API key
       ),
   ));

   $response = curl_exec($curl);
   $err = curl_error($curl);
   curl_close($curl);

   if ($err) {
       echo "cURL Error #:" . $err;
   } else {
       echo $response;
   }
}
 

 

 

Berikut contoh node js :

const express = require('express');
const fs = require('fs');
const axios = require('axios');
const app = express();

app.use(express.json());

app.post('/webhook', async (req, res) => {
   const data = req.body;
   if (!data) {
       return res.json({ message: 'empty data' });
   }

   const { name, from, groupId, text: message, file, location } = data;

   fs.appendFileSync('webhook.log', JSON.stringify(data) + '\n');

   async function sendMessage(target, message, media = null) {
       const response = await axios.post("https://api.boostifyhub.id/send", {
           api_key: 'ccf29bb02b7c313d84a32d651e81006b',
           target,
           content: message,
           media,
           messageType: 'text'
       });
       return response.data;
   }

   if (message === "halo bro") {
       await sendMessage(from, `Oi,halo ${name}`);
   }

   res.json({ message: 'this is webhook' });
});

app.listen(3000, () => console.log('Server running on port 3000'));