php 使用curl通过Plivo发送短信。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用curl通过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);

?>

以上是关于php 使用curl通过Plivo发送短信。的主要内容,如果未能解决你的问题,请参考以下文章

带有 curl 短信的 php 在实时服务器上发送

PHP 结合前端 ajax 爬取网站信息后, 向指定用户发送指定短信;

跟着百度学PHP[17]-PHP扩展CURL的用法详解

通过发送短信www.smsmatrix.com使用PHP的短信网关

PHP 使用PHP通过www.smsmatrix.com SMS Gateway发送短信

如何通过 cURL/PHP 使用 PUT 方法将 JSON 数据发送到 API