본 내용은 WeChat에서 개발한 WeChat 전송 메시지에 대한 내용입니다
1. 먼저 개발자 테스트 계정(애플리케이션)을 얻으면 현재 스캔 코드에서 제공하는 계정을 기반으로 테스트 계정이 생성됩니다. 링크 주소: http://mp.weixin.qq.com/wiki/home/index.html
이때, 테스트용 appid 및 appsecret을 호출한 다음 인터페이스 가져오기를 호출하고 자격 증명 인터페이스를 호출하여 access_token을 가져옵니다.
2. 단일 사용자 정보 전송 및 다중 사용자 메시지 일괄 처리를 시뮬레이션하는 정보 전송에 대해 이야기해 보겠습니다. 전송
(1) 기본 방식, http 방식
/// <summary> /// http get/post 公用方法 /// </summary> /// <param name="requestUrl">请求链接</param> /// <param name="requestJsonParams">请求参数值(如果是get方式此处为“”值,默认为 "")</param> /// <param name="requestMethod">请求方式 post or get</param> /// <returns></returns> public static string Request(this string requestUrl, string requestMethod, string requestJsonParams = "") { string returnText = ""; StreamReader streamReader = null; HttpWebRequest request = null; HttpWebResponse response = null; Encoding encoding = Encoding.UTF8; request = (HttpWebRequest)WebRequest.Create(requestUrl); request.Method = requestMethod; if (!string.IsNullOrEmpty(requestJsonParams) && requestMethod.ToLower() == "post") { byte[] buffer = encoding.GetBytes(requestJsonParams); request.ContentLength = buffer.Length; request.GetRequestStream().Write(buffer, 0, buffer.Length); } try { response = (HttpWebResponse)request.GetResponse(); using (streamReader = new StreamReader(response.GetResponseStream(), System.Text.Encoding.GetEncoding("gb2312")))//utf-8 { returnText = streamReader.ReadToEnd(); } } catch (Exception ex) { returnText = ex.Message; } return returnText; }
(2) 시뮬레이션 전송:
/// <summary> /// 发送微信信息(单用户发送) /// </summary> /// <param name="access_token">授权码(微信token)</param> /// <param name="messageInfo">发送信息模型</param> /// <returns></returns> public static string SendSingleMessage(WeChatParamEntity messageInfo, string access_token) { messageInfo.MsgType = string.IsNullOrEmpty(messageInfo.MsgType) ? "text" : messageInfo.MsgType; string jsonDataParams = messageInfo == null ? "" : JsonConvert.SerializeObject(new { touser = messageInfo.ToUser, msgtype = messageInfo.MsgType, text = new { content = messageInfo.Text } }); string requestUrl = string.Format(Consts.URL_POSTSINGLETEXTMESSAGE, access_token); return requestUrl.Request("POST", jsonDataParams); } /// <summary> /// 发送微信信息(多用户批量发送) /// </summary> /// <param name="access_token">授权码(微信token)</param> /// <param name="messageInfo">发送信息模型</param> /// <returns></returns> public static string SendMessages(WeChatParamsEntity messageInfo, string access_token) { messageInfo.MsgType = string.IsNullOrEmpty(messageInfo.MsgType) ? "text" : messageInfo.MsgType; string jsonDataParams = messageInfo == null ? "" : JsonConvert.SerializeObject(new { touser = messageInfo.ToUser, msgtype = messageInfo.MsgType, text = new { content = messageInfo.Text } }); string requestUrl = string.Format(Consts.URL_POSTTEXTMESSAGES, access_token); return requestUrl.Request("POST", jsonDataParams); }
(3) 두 개의 매개변수 모델:
/// <summary> /// 微信 发送信息 参数实体模型 /// </summary> public class WeChatParamEntity { /// <summary> /// 普通用户openid /// </summary> public string ToUser { get; set; } /// <summary> /// 传输的文件类型(text,image, and so on) /// </summary> public string MsgType { get; set; } = "text"; /// <summary> /// 传输文本内容 /// </summary> public string Text { get; set; } } /// <summary> /// 微信 发送信息 参数实体模型 /// </summary> public class WeChatParamsEntity { /// <summary> /// 普通用户openid /// </summary> public string[] ToUser { get; set; } /// <summary> /// 传输的文件类型(text,image, and so on) /// </summary> public string MsgType { get; set; } = "text"; /// <summary> /// 传输文本内容 /// </summary> public string Text { get; set; } }
(4) web.config의 링크
<!--微信接口--> <add key="appid" value="wx123456789021"/> <add key="appSecret" value="adasdsadasdasdsadasdsaqweqw"/> <add key="getAccessTokenUrl" value="https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={0}&secret={1}"/> <!--单用户信息发送--> <add key="postSingleTextMessageUrl" value="https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token={0}"/> <!--多用户批量发送--> <add key="postTextMessagesUrl" value="https://api.weixin.qq.com/cgi-bin/message/mass/send?access_token={0}"/> <!--\微信接口-->
3. 테스트에서는 전송해야 하는 개체의 openID인 touser와 관련된 이 매개 변수를 사용합니다. 이는 매우 간단합니다. >
개발자 문서의 appid 및 appsecret(즉, 위의 2단계) 이때 현재 페이지 아래에 QR 코드가 있습니다. 이때 WeChat으로 스캔하여 자동으로 openID를 얻을 수 있습니다. 시간에 스크립트 시뮬레이션 포스트에 매개변수를 입력하면 추가로 참고: 문서에 제안된 json 매개변수 형식 참고 3: 토큰은 유효합니다. 7200의 경우 현재 정보를 보내는 사용자의 토큰 유효성을 확인하는 것이 필요합니다. 동시에 하루 최대 요청 수는 2000입니다.토큰 가져오기:아아아아
위 내용은 WeChat 개발 WeChat에서 메시지 보내기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!