小程序
小游戏
企业微信
微信支付
扫描小程序码分享
开发文档太简单,有没有PHP版的完整例子?
http://api.weixin.qq.com/wxa/business/getliveinfo?access_token=
这个,用不成功
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
Content-type:application/json 试试,安装个Fiddler看下body中是否是json字符串
$data 转换成json=>{ start:0,limit:10 } 而非查询字符串 start=0&limit=10
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
$data = array(
"start"=>0,
"limit"=>10
);
$query = http_build_query($data);
$options['http'] = array(
// 'access_token'=>$access_token,
'timeout'=>60,
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded;charset=utf-8',
'content' => $query
$url = 'https://api.weixin.qq.com/wxa/business/getliveinfo?access_token='.$access_token;
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
$resultT = json_decode($result, true);
echo $resultT;
执行结果:
Array{"errcode":47001,"errmsg":"data format error hint: [q9NUXa09384812]"}
你好,提问时建议具体说明问题,不成功具体是什么表现,具体是报什么错呢?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
Content-type:application/json 试试,安装个Fiddler看下body中是否是json字符串
$data 转换成json=>{ start:0,limit:10 } 而非查询字符串 start=0&limit=10
$data = array(
"start"=>0,
"limit"=>10
);
$query = http_build_query($data);
$options['http'] = array(
// 'access_token'=>$access_token,
'timeout'=>60,
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded;charset=utf-8',
'content' => $query
);
$url = 'https://api.weixin.qq.com/wxa/business/getliveinfo?access_token='.$access_token;
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
$resultT = json_decode($result, true);
echo $resultT;
执行结果:
Array{"errcode":47001,"errmsg":"data format error hint: [q9NUXa09384812]"}
你好,提问时建议具体说明问题,不成功具体是什么表现,具体是报什么错呢?