小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我拿到了小程序的token
为什么拉取不到直播间的ID?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请问下这些api的文档在哪里呀?我怎么没有找到
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
如果是php建议把数组用`json_encode`转换一下
如图提示,你的post body里面是空的吧
function send_post($url, $post_data) {
$postdata = http_build_query($post_data);
$options = array(
'https' => array(
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded;charset=utf-8',
'content' => $postdata,
'timeout' => 15 * 60 // 超时时间(单位:s)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
return $result;
}
$post_data = array(
"start"=> 0,
"limit"=>10
$token=getAccessToken();
echo send_post('https://api.weixin.qq.com/wxa/business/getliveinfo?access_token='.$token, $post_data);
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请问下这些api的文档在哪里呀?我怎么没有找到
如果是php建议把数组用`json_encode`转换一下
如图提示,你的post body里面是空的吧
function send_post($url, $post_data) {
$postdata = http_build_query($post_data);
$options = array(
'https' => array(
'method' => 'POST',
'header' => 'Content-type:application/x-www-form-urlencoded;charset=utf-8',
'content' => $postdata,
'timeout' => 15 * 60 // 超时时间(单位:s)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
return $result;
}
$post_data = array(
"start"=> 0,
"limit"=>10
);
$token=getAccessToken();
echo send_post('https://api.weixin.qq.com/wxa/business/getliveinfo?access_token='.$token, $post_data);
errmsg: "empty post data hint: [EsQEza02765286]"
麻烦问下,怎么处理,可以帮帮忙吗?,谢谢。