收藏
回答

小程序直播,直播间导入商品,提示房间ID不存在,怎么解决?

直播间和商品已通过调用API创建成功,在调用导入直播间商品接口是提示“300022 roomid is not exsit”

请求参数 {"ids":[4,5,6],"roomId":2}


回答关注问题邀请回答
收藏

2 个回答

  • Aaron🌀
    Aaron🌀
    2021-08-23

    请问已经解决了吗,我也遇到了相同问题

    2021-08-23
    有用 1
    回复
  • Lonky
    Lonky
    2020-07-01

    你好,麻烦提供下appid

    2020-07-01
    有用
    回复 6
    • 你比我猜
      你比我猜
      2020-07-01
      {"ids":[8],"roomId":25} appid:  wx2cf54a2818ebd62c
      2020-07-01
      回复
    • 你比我猜
      你比我猜
      2020-07-01
      正在开发,也出现这个问题,烦请核实一下,谢谢
      2020-07-01
      1
      回复
    • rock
      rock
      2020-07-02回复你比我猜
      你这个是 请求头 发一下 ?是 post 请求哈,并且 content_type 要设置为 application/json;
      2020-07-02
      回复
    • 你比我猜
      你比我猜
      2020-07-06
      谢谢,已解决,贴curl 源码
       private function http_post($url,$data = null){
              $headers = array("Content-type: application/json;charset='utf-8'","Accept: application/json","Cache-Control: no-cache", "Pragma: no-cache");
              $curl = curl_init();
              curl_setopt($curl, CURLOPT_URL, $url);
              curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
              curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
              if (!empty($data)){
                  curl_setopt($curl, CURLOPT_POST, 1);
                  curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
                  curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
              }
              curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
              $output = curl_exec($curl);
              curl_close($curl);
              return $output;
          }
      2020-07-06
      回复
    • lvi
      lvi
      2021-07-13回复rock
      您好,这边也有同样的问题,开发语言是java,附上接口及出入参,麻烦看下怎么解决。
      操作接口:直播间导入商品,接口url:https://api.weixin.qq.com/wxaapi/broadcast/room/addgoods?access_token=
      请求参数json:
      {
          "ids": [52],
          "roomId": 119
      }
      接口返回json:
      [{"code":0,"wxError":{"errorCode":300022,"errorMsg":"roomid is not exsit rid: 60e51703-01e91312-60a1f4ef","json":"{\"errmsg\":\"roomid is not exsit rid: 60e51703-01e91312-60a1f4ef\",\"errcode\":300022}"},"detailMessage":"{\"errmsg\":\"roomid is not exsit rid: 60e51703-01e91312-60a1f4ef\",\"errcode\":300022}","stackTrace":[],"suppressedException:[]}]"
      2021-07-13
      回复
    查看更多(1)
登录 后发表内容
问题标签