Integrasi PHP

contoh request API dengan menggunakan PHP

// PHP Code
<?php

$url = 'https://api.dripsender.id/send';
$phone = '62813xxxxxxx';
$text = 'hello world';
$api_key = 'ganti-dengan-api-key-dripsender';

//Initiate cURL.
$ch = curl_init($url);

//The JSON data.
$jsonData = array(
    'api_key' => $api_key,
    'phone' => $phone,
    'text' => $text
);

//Encode the array into JSON.
$jsonDataEncoded = json_encode($jsonData);

//Tell cURL that we want to send a POST request.
curl_setopt($ch, CURLOPT_POST, 1);

//Attach our encoded JSON string to the POST fields.
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);

//Set the content type to application/json
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json')); 

//Execute the request
$result = curl_exec($ch);

Last updated