- 【物流助手】服务商调用返回 api功能未授权?
即时配送获取快递公司接口,我方为第三方应用,代商户开发小程序,调用接口返回: "微信 POST 请求发生错误!错误代码:48001,说明:api unauthorized rid: 611e25cb-4ebf925c-7b74e340" 第三方应用ID:wxeda740b3e0debfed 商户应用ID:wxff0d7c567630a39f
2021-08-19 - 扫码点餐业务同步订单提示:sp_mchid与sub_mchid绑定关系不合法
点餐订单信息同步(服务商) https://pay.weixin.qq.com/wiki/doc/apiv3/catering.php?chapter=26_1&index=1 间连商户,调用该接口返回: { "code":"INVALID_REQUEST", "message":"sp_mchid与sub_mchid绑定关系不合法", "detail":{ "field":"sub_mchid", "value":"395407112", "issue":"sp_mchid and sub_mchid bind relation is invalid" } } 通过间连提供的服务商ID能够查到对应的商家信息不确定这个是啥问题
2021-08-03 - 公众号配置服务器启动后,公众号仍旧使用了平台关键词规则?
APPID:wxcd2dcd42bf14fd55 启动了服务器配置发送消息,依旧还是使用了平台上的消息规则
2020-12-18 - 代小程序开发 创建小程序查询返回系统繁忙,如何解决?
第三方应用调用创建小程序接口 https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/Mini_Programs/Fast_Registration_Interface_document.html 调用成功后,通过任务通知,返回结果为: 系统繁忙,此时请开发者稍候再试 - check legal persona and enterprise fail [图片] 通过搜索社区,排查了营业执照10-15天的问题
2020-08-24 - 查询服务商的当月提审限额(quota)和加急次数 返回-1?
请求地址:https://api.weixin.qq.com/wxa/queryquota?access_token= 使用的是 第三方平台的access_token APPID:wxeda740b3e0debfed 一直返回: { "errcode": -1, "errmsg": "system error hint: [3HdDNHnre-zmOY9]" }
2020-08-07 - 小微进件 图片上传:参数填写有误,请检查后重试?
接口:https://pay.weixin.qq.com/wiki/doc/api/xiaowei.php?chapter=19_9 语言:C#(DotNetCore2.2) 使用MultipartFormDataContent var mulFormDataContent = new MultipartFormDataContent("7db1851cd1158"); foreach (var item in sortedDic) { var sContent = new ByteArrayContent(Encoding.UTF8.GetBytes(item.Value)); sContent.Headers.ContentDisposition = new System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") { Name = $"\"{item.Key}\"", }; mulFormDataContent.Add(sContent); } var byteArrayContent = new ByteArrayContent(picRequest.ImageBytes); byteArrayContent.Headers.ContentDisposition = new System.Net.Http.Headers.ContentDispositionHeaderValue("form-data") { Name = "\"media\"", FileName = $"\"{picRequest.ImageName}\"", }; byteArrayContent.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/octet-stream"); byteArrayContent.Headers.ContentLength = picRequest.ImageBytes.Length; mulFormDataContent.Add(byteArrayContent); return mulFormDataContent; 最后结果: <xml><return_code><![CDATA[FAIL]]></return_code> <return_msg><![CDATA[参数填写有误,请检查后重试]]></return_msg> </xml>
2020-03-26