小程序
小游戏
企业微信
微信支付
扫描小程序码分享
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
/**
* 发送post请求
* @param string $url 请求地址
* @param array $data_string post键值对数据,用json_encode格式
*/
function http_post($url, $data_string) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'X-AjaxPro-Method:ShowList',
'Content-Type: application/json; charset=utf-8',
'Content-Length: ' . strlen($data_string))
);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$url = 'http://api.weixin.qq.com/wxa/business/getliveinfo?access_token='.$token;
$data=json_encode(array(
"start"=>0,
"limit"=>10
));
echo $result=http_post($url,$data);
/*亲测可以*/
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
很多同学遇到这个问题呀..
注意下$query的值,是json格式,不是查询字符串
正确格式:{start:0 , limit:10}
错误格式:start=0&limit=10
有帮助到点个赞哦。
同问
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
/**
* 发送post请求
* @param string $url 请求地址
* @param array $data_string post键值对数据,用json_encode格式
*/
function http_post($url, $data_string) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'X-AjaxPro-Method:ShowList',
'Content-Type: application/json; charset=utf-8',
'Content-Length: ' . strlen($data_string))
);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$url = 'http://api.weixin.qq.com/wxa/business/getliveinfo?access_token='.$token;
$data=json_encode(array(
"start"=>0,
"limit"=>10
));
echo $result=http_post($url,$data);
/*亲测可以*/
很多同学遇到这个问题呀..
注意下$query的值,是json格式,不是查询字符串
正确格式:{start:0 , limit:10}
错误格式:start=0&limit=10
有帮助到点个赞哦。
同问
注意下$query的值,是json格式,不是查询字符串
正确格式:{start:0 , limit:10}
错误格式:start=0&limit=10
有帮助到点个赞哦。