- 公众号 通过API上传音频文件, 如何支持音频中文文件名?
如果是中文名称的音频文件会报 40113错误; 提示:unsupported file type hint: [UAI8mA0178d234] rid: 617144fa-6c428485-0154bf63 请问 通过API上传音频文件, 如何支持音频中文文件名?
2021-10-21 - 关于获取视频永久素材接口返回的down_url链接是临时连接吗?
请问 关于获取视频永久素材接口返回的down_url链接是临时连接吗? 我上周通过此接口获取的down_url, 今天却并不能访问了 , 提示403; https://api.weixin.qq.com/cgi-bin/material/get_material?access_token=ACCESS_TOKEN [图片] 提示错误: [图片]
2021-10-19 - 想通过API群发推文,图文素材里的 视频 音频文件这些放content里应什么格式?
[图片][图片] 这个在api中 只有在content中配置, 请问 视频,音频 这些 放content中 应什么格式? 或者 API中图文模式是否不支持 视频 音频? 如果想实现图1富文本编辑, 请问 有对应的前端插件吗?
2021-10-12 - 使用api上传图文素材时 搜索 视频号 公众号 地理位置这些支持吗?
使用api上传图文素材时 搜索 视频号 公众号 地理位置这些支持吗?[图片]
2021-10-11 - 订阅消息发送,微信端服务通知接收到中文乱码?
[图片] 服务端代码: string Url = "https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token="+ token; var postdata = new { touser = openId, template_id = templeteId, page = "index", data = new { thing1 = new { value = "今日行程" }, date2 = new { value = "2020-03-01" }, thing4 = new { value = "请做好准备,即将出发" } } }; wenXinResult = HttpHelper.HttpPostJson(Url, JsonHelper.Serialize(postdata)); httppost代码: HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url); req.Method = "POST"; req.ContentType = "application/json"; Stream myRequestStream = req.GetRequestStream(); StreamWriter myStreamWriter = new StreamWriter(myRequestStream, Encoding.GetEncoding("gb2312")); myStreamWriter.Write(postDataStr); myStreamWriter.Close(); HttpWebResponse rsp = (HttpWebResponse)req.GetResponse(); if (string.IsNullOrWhiteSpace(rsp.CharacterSet)) { return GetResponseAsString(rsp, Encoding.UTF8); } else { Encoding encoding = Encoding.GetEncoding(rsp.CharacterSet); return GetResponseAsString(rsp, encoding); } 请大神帮我看下那里有问题,感谢!
2020-02-26 - 订阅消息推送,服务通知里收到的消息 中文乱码怎么处理?
[图片]
2020-02-26 - 小程序体验版订阅消息,后台服务发送消息 返回的OK,但是微信服务通知里确没有收到消息?
我用小程序体验版订阅消息,后台服务发送消息 返回的OK,但是微信服务通知里确没有收到消息? string Url = "https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token="+ token; var postdata = new { touser = openId, template_id = templeteId, page = "pages/index/index", data = new { thing1 = new { value = "今日行程" }, date2 = new { value = "2020-02-20" }, thing4 = new { value = "请做好准备,即将出发" } } }; wenXinResult = HttpHelper.HttpPostJson(Url, JsonHelper.Serialize(postdata), false); wenXinResult 里返回的是成功!服务通知里确没有收到消息,请教大神 这是哪里出问题了吗?
2020-02-26 - 我用小程序体验版订阅消息,后台服务发送消息 返回的OK,但是微信服务通知里确没有收到消息?
我用小程序体验版订阅消息,后台服务发送消息 返回的OK,但是微信服务通知里确没有收到消息? string Url = "https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token="+ token; var postdata = new { touser = openId, template_id = templeteId, page = "pages/index/index", data = new { thing1 = new { value = "今日行程" }, date2 = new { value = "2020-02-20" }, thing4 = new { value = "请做好准备,即将出发" } } }; wenXinResult = HttpHelper.HttpPostJson(Url, JsonHelper.Serialize(postdata), false); wenXinResult 里返回的是成功!服务通知里确没有收到消息
2020-02-25