本文实例讲述了php使用curl模拟get与post向微信接口提交及获取数据的方法。分享给大家供大家参考,具体如下:
php curl函数可以模仿用户进行一些操作,如我们可以模仿用户提交数据也可以模仿用户进行网站访问了,下面我们来介绍利用curl模拟进行微信接口的get与post例子,例子非常的简单就两个:
get提交获取数据
/**
* @desc 获取access_token
* @return string access_token
*/
function getaccesstoken(){
$appid = '1232assad13213123';
$appsecret = '2312312321adss3123213';
$geturl = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$appsecret;
$ch = curl_init();
curl_setopt($ch, curlopt_url, $geturl);
curl_setopt($ch, curlopt_header, 0);
curl_setopt($ch, curlopt_returntransfer, 1);
curl_setopt($ch, curl_sslversion_ssl, 2);
curl_setopt($ch, curlopt_ssl_verifypeer, false);
curl_setopt($ch, curlopt_ssl_verifyhost, false);
$data = curl_exec($ch);
$response = json_decode($data);
return $response->access_token;
}
post提交获取数据
/**
* @desc 实现天气内容回复
*/
public function testweixin(){
$access_token = $this->getaccesstoken();
$custommessagesendurl = 'https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token='.$access_token;
$description = '今天天气的详细信息(从第三方获取)。';
$url = 'http://weather.com/';
$picurl = 'http://weather.com/';
$postdataarr = array(
'touser'=>'openid',
'msgtype'=>'news',
'news'=>array(
'articles'=>array(
'title'=>'当天天气',
'description'=>$description,
'url'=>$url,
'picurl'=>$picurl,
),
),
);
$postjosndata = json_encode($postdataarr);
$ch = curl_init($custommessagesendurl);
curl_setopt($ch, curlopt_header, 0);
curl_setopt($ch, curlopt_returntransfer, 1);
curl_setopt($ch, curlopt_post, 1);
curl_setopt($ch, curlopt_postfields, $postjosndata);
curl_setopt($ch, curlopt_ssl_verifypeer, false);
curl_setopt($ch, curlopt_ssl_verifyhost, false);
$data = curl_exec($ch);
var_dump($data);
}
例子相对来说比较简单也没有什么好详细分析的了,大家照抄就可以实现我们想要的功能了.
希望本文所述对大家php程序设计有所帮助。
更多php使用curl模拟get与post向微信接口提交及获取数据的方法。