Skip to content

Instantly share code, notes, and snippets.

@tsudot
Last active November 21, 2021 10:22
Show Gist options
  • Save tsudot/41eae953c6af09131157 to your computer and use it in GitHub Desktop.
Save tsudot/41eae953c6af09131157 to your computer and use it in GitHub Desktop.
Send an SMS using curl through Plivo.
<?php
# Plivo AUTH ID
$AUTH_ID = '';
# Plivo AUTH TOKEN
$AUTH_TOKEN = '';
# SMS sender ID.
$src = '';
# SMS destination number
$dst = '';
# SMS text
$text = '';
$url = 'https://api.plivo.com/v1/Account/'.$AUTH_ID.'/Message/';
$data = array("src" => "$src", "dst" => "$dst", "text" => "$text");
$data_string = json_encode($data);
$ch=curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, true);
curl_setopt($ch, CURLOPT_USERPWD, $AUTH_ID . ":" . $AUTH_TOKEN);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$response = curl_exec( $ch );
curl_close($ch);
?>
@ik315717
Copy link

ik315717 commented Nov 3, 2015

Thank you very much!

@ajaysoftdeveloper
Copy link

How to get call details how to pass this url in curl using get method, i have auth id
GET https://api.plivo.com/v1/Account/{auth_id}/Call/

@vav1007
Copy link

vav1007 commented Dec 10, 2017

Hi ,
I m trying to send sms to the India number from US Number . But it showing
"error": "Destination Phone Numbers need to be verified. Please go to https://manage.plivo.com/sandbox-numbers/ to verify them."
Is it necessary to buy India Number or any process is there.Can you help me it please.

@Garconis
Copy link

Garconis commented Nov 8, 2018

@tsudot do you know how to do this with the SimpleTexting API?

@tribalboy3000
Copy link

I needed to add this to make it work:
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);

@shahul398
Copy link

shahul398 commented Nov 21, 2021

not working for me.. No response from the API request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment