- 微信公众号click事件被动回复接口报错 自动重复尝试 测试没问题正常返回 为什么?
微信消息自动回复 里面包含一个客服发送消息接口 一个回复图片xml 发布之后 click尝试之后 接口报错三次重复执行 客服发送三次同样消息 但是回复图片只回复了一次 报错详情 [图片] 模拟微信消息调用接口返回结果正常 [图片]
02-20 - c# .net core 微信上传永久图片素材 提示41005 为什么?
string access_token = responseModel.Token; string url = $"https://api.weixin.qq.com/cgi-bin/material/add_material?access_token={access_token}&type=image"; using (var form = new MultipartFormDataContent()) { // 读取图片文件 byte[] imageData = System.IO.File.ReadAllBytes(App.WebHostEnvironment.WebRootPath+"/"+ testpath); ByteArrayContent imageContent = new ByteArrayContent(imageData); imageContent.Headers.ContentType = MediaTypeHeaderValue.Parse("image/jpg"); // 添加图片内容到表单 form.Add(imageContent,"media","test.jpg"); // 发送POST请求 HttpResponseMessage response = await _httpClient.PostAsync(url, form); // 处理响应 if (response.IsSuccessStatusCode) { string responseBody = await response.Content.ReadAsStringAsync(); // 解析响应获取返回的media_id等信息 // 在此仅是简单示例,可根据实际返回内容进行解析 return responseBody; } else { return "上传失败,HTTP状态码: " + response.StatusCode; } } {"errcode":41005,"errmsg":"media data missing hint: [DXHR603679020] rid: 65d1b1d7-3586cc15-0507be27"} 请求帮助
02-18