我正在使用webaroo api发送消息,我是这个领域的新手,请指导我如何使用这个api发送消息。 这是api: -
<?php
$method = 'gupshup.getPublicStream';
$from = '9749633368';
$to = '9749633368';
$skipadult=true;
$url = "http://api.smsgupshup.com/GupshupAPI/rest?skipadult=$skipadult&from=$from
&range=$to&method=$method&v=1.0&format=xml";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$curl_scraped_page = curl_exec($ch);
curl_close($ch);
echo $curl_scraped_page;
?>
答案 0 :(得分:0)
我认为您正在尝试访问“HTTP”网址,只需使用 file_get_contents 方法
答案 1 :(得分:0)
Codeigniter已经有CURL library
示例:
$this->load->library('curl');
echo $this->curl->simple_get('http://api.smsgupshup.com/GupshupAPI/rest?skipadult=$skipadult&from=$from&range=$to&method=$method&v=1.0&format=xml');