问题已解决,解决方法:https://developers.weixin.qq.com/community/develop/doc/0002682da38d3860277eb489058400
微信小程序,调用发送客服消息接口,总是返回"errcode":40101https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/kf-mgnt/kf-message/sendCustomMessage.html 请求参数: {"touser":"xxxxxx","text":{"content":"欢迎咨询!"},"msgtype":"text"} 返回参数: {"errcode":40101,"errmsg":"missing parameter rid: 62fdb9c2-08d47683-027af559"} 想问下到底是缺了什么参数,都是参照文档请求的!
2022-08-30问题已解决,解决方法:https://developers.weixin.qq.com/community/develop/doc/0002682da38d3860277eb489058400
发送客服消息,errorcode:40101,?请求接口:https://api.weixin.qq.com/cgi-bin/message/custom/business/send?access_token=xxx 请求方法: post application/json; encoding=utf-8 请求参数: {"touser":"xxx","msgtype":"text","link":{"title":"500","description":"dsfdsf","url":"https://skill2-mini.yxgames.com:8443/","thumb_url":"https://skill2-mini.yxgames.com:8443/static/h-ui.admin/images/admin-login-bg.jpg"}} 返回:{ "errcode": 40101, "errmsg": "missing parameter rid: 63005e03-42fcaaae-68a7403c" }
2022-08-30问题已解决:请求地址错误,文档引导不清晰导致找错文档地址,看看你们跟我错误是否一样错误文档地址:https://developers.weixin.qq.com/miniprogram/dev/OpenApiDoc/kf-mgnt/kf-message/sendCustomMessage.html[图片] 正确文档地址:https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/customer-message/customerServiceMessage.send.html[图片]
小程序,服务端接口 客服消息发送异常请问发送Text消息一直失败,错误信息提示遗漏参数,这个是什么问题,没发现遗漏什么参数 { errcode: 40101, errmsg: "missing parameter rid: 63087e88-315af121-5925fcc8", } 请求地址: POST https://api.weixin.qq.com/cgi-bin/message/custom/business/send?access_token=ACCESS_TOKEN 请求参数: { "touser":"openid", "msgtype":"text", "text":{ "content":"HelloWorld" } } 响应结果: { errcode: 40101, errmsg: "missing parameter rid: 63087e88-315af121-5925fcc8", }
2022-08-30