收藏
回答

小程序客服API接口报错 api unauthorized 如何解决?

调用接口:https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token

返回错误:{"errcode":48001,"errmsg":"api unauthorized rid: 607bfe76-18615f0b-13f3872f"}

流程:在小程序上,调用自己的服务器接口,服务器接口中通过post请求https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token

服务器用的php

$text = array(
    'content' => 'Hello World'
);
$post_data = array(
    'touser' => 'oiysY406iOl_1c5K1o_G8Ml17sTc'//用户openid
    'msgtype' => 'text',
    'text' => $text,
);
$result = send_post('https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token='.$_GET['access_token'], $post_data);

-------------
请问api unauthorized 这个接口未授权是什么意思,需要怎么授权?如何解决当前问题
回答关注问题邀请回答
收藏

3 个回答

  • 大白
    大白
    2021-05-12

    解决了,我自己的post方法不支持这个

    2021-05-12
    有用
    回复
  • 一笑皆春
    一笑皆春
    2021-04-20

    谢邀

    2021-04-20
    有用
    回复
  • Sige
    Sige
    2021-04-18

    之前我也遇到过这样的问题

    2021-04-18
    有用
    回复
登录 后发表内容
问题标签