收藏
回答

小程序获取直播间ID入参格式对吗?47001是因为入参格式?

最后一次编辑于  2020-03-06
回答关注问题邀请回答
收藏

3 个回答

  • HAHA Lee
    HAHA Lee
    2020-03-09

        /**

    * 发送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);


    /*亲测可以*/

    2020-03-09
    有用 1
    回复
  • peng
    peng
    2020-03-09

    很多同学遇到这个问题呀..

    注意下$query的值,是json格式,不是查询字符串

    正确格式:{start:0 , limit:10}

    错误格式:start=0&limit=10


    有帮助到点个赞哦。

    2020-03-09
    有用
    回复
  • 花🌻开在太阳🌞下
    花🌻开在太阳🌞下
    2020-03-09

    同问


    2020-03-09
    有用
    回复 1
    • peng
      peng
      2020-03-09
      很多同学遇到这个问题呀..
      注意下$query的值,是json格式,不是查询字符串
      正确格式:{start:0 , limit:10}
      错误格式:start=0&limit=10
      有帮助到点个赞哦。
      2020-03-09
      1
      回复
登录 后发表内容
问题标签