收藏
回答

调用小程序模板相关接口报错 errcode -1 system error


POST请求

请求地址:https://api.weixin.qq.com/cgi-bin/wxopen/template/library/list


参数 access_token

offset: 0

count: 5

结果返回

{errcode: -1, errmsg: "system error hint: [8RyGQA07853129]"}


最后一次编辑于  2018-07-02
回答关注问题邀请回答
收藏

2 个回答

  • 2018-08-01

    楼主好,请问你提交的这个问题解决了吗?我上午也遇到这个问题了。

    2018-08-01
    有用
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2018-07-02

    你好,请详细描述问题,并提供相关代码

    2018-07-02
    有用
    回复 8
    • yangcheng
      yangcheng
      2018-07-03

      $timeout = 10;

              $post_data = [

                  'access_token' => '正确的access_token',

                  'offset' => 0,

                  'count' => 5

              ];

              $url = 'https://api.weixin.qq.com/cgi-bin/wxopen/template/library/list';


              $ch = curl_init();

              curl_setopt ($ch, CURLOPT_URL, $url);

              curl_setopt ($ch, CURLOPT_POST, 1);

              if($post_data != ''){

                  curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);

       

              }

              curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 

              curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);

              curl_setopt($ch, CURLOPT_HEADER, false);

              $file_contents = curl_exec($ch);

              curl_close($ch);

              var_dump($file_contents);die;


      2018-07-03
      回复
    • yangcheng
      yangcheng
      2018-07-03回复yangcheng

      打印结果

      string '{"errcode":-1,"errmsg":"system error hint: [01563129]"}' (length=55)


      2018-07-03
      回复
    • 疯狂的小辣椒
      疯狂的小辣椒
      2018-07-04回复yangcheng

      你好,如果重试还不能解决问题,请提供一下小程序的appid和大致报错的时间点

      2018-07-04
      回复
    • 2018-08-01回复疯狂的小辣椒

      wx6a55aba164f4c99d

      8月1日上午发现的这个情况

      2018-08-01
      回复
    • 疯狂的小辣椒
      疯狂的小辣椒
      2018-08-01回复

      看上去像是系统异常抛出的错误,隔段时间重试还是不能解决问题么? 时间点的格式具体到时刻啊:2018-8-1 9:45这样的

      2018-08-01
      回复
    查看更多(3)
登录 后发表内容