小編給大家分享一下php微信公眾賬號開發(fā)遇到的坑有哪些,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
我們一直強調網站建設、成都網站設計對于企業(yè)的重要性,如果您也覺得重要,那么就需要我們慎重對待,選擇一個安全靠譜的網站建設公司,企業(yè)網站我們建議是要么不做,要么就做好,讓網站能真正成為企業(yè)發(fā)展過程中的有力推手。專業(yè)網絡公司不一定是大公司,成都創(chuàng)新互聯(lián)公司作為專業(yè)的網絡公司選擇我們就是放心。
菜單回復是需要處理XML文件的,我們根據(jù)微信返回的XML文件,可以得到每個微信用戶相對于微信公眾號的唯一標識。微信公眾平臺的機制簡單的將就是我們自己輸出固定格式的xml文件,然后微信APP負責解析,得到我們想要的信息,然后對信息統(tǒng)一處理。
第六坑,如果你看微信文檔,那么,絕對坑死你,上圖。這里的ToUserName和FromUserName一定特么的要分清楚了,記住,千萬不要寫反了,用戶對于微信而言是A→B,那么微信對于用戶就是反著來的,貌似現(xiàn)在應該說清楚了。
////// 接收微信發(fā)送的XML消息并且解析 /// private void ReceiveXml() { try { Stream requestStream = System.Web.HttpContext.Current.Request.InputStream; byte[] requestByte = new byte[requestStream.Length]; requestStream.Read(requestByte, 0, (int)requestStream.Length); string requestStr = Encoding.UTF8.GetString(requestByte); if (!string.IsNullOrEmpty(requestStr)) { //封裝請求類 XmlDocument requestDocXml = new XmlDocument(); requestDocXml.LoadXml(requestStr); XmlElement rootElement = requestDocXml.DocumentElement; WxXmlModel WxXmlModel = new WxXmlModel(); if (rootElement != null) { WxXmlModel.ToUserName = rootElement.SelectSingleNode("ToUserName") == null ? "" : rootElement.SelectSingleNode("ToUserName").InnerText; WxXmlModel.FromUserName = rootElement.SelectSingleNode("FromUserName") == null ? "" : rootElement.SelectSingleNode("FromUserName").InnerText; WxXmlModel.CreateTime = rootElement.SelectSingleNode("CreateTime") == null ? "" : rootElement.SelectSingleNode("CreateTime").InnerText; WxXmlModel.MsgType = rootElement.SelectSingleNode("MsgType") == null ? "" : rootElement.SelectSingleNode("MsgType").InnerText; switch (WxXmlModel.MsgType) { case "text"://文本 WxXmlModel.Content = rootElement.SelectSingleNode("Content") == null ? "" : rootElement.SelectSingleNode("Content").InnerText; break; case "image"://圖片 WxXmlModel.PicUrl = rootElement.SelectSingleNode("PicUrl") == null ? "" : rootElement.SelectSingleNode("PicUrl").InnerText; break; case "event"://事件 WxXmlModel.Event = rootElement.SelectSingleNode("Event") == null ? "" : rootElement.SelectSingleNode("Event").InnerText; if (WxXmlModel.Event != "TEMPLATESENDJOBFINISH")//關注類型 { WxXmlModel.EventKey = rootElement.SelectSingleNode("EventKey") == null ? "" : rootElement.SelectSingleNode("EventKey").InnerText; } break; default: break; } } ResponseXML(WxXmlModel);//回復消息 } } catch (Exception ee) { //記錄錯誤日志 } } ////// 回復消息 /// /// private void ResponseXML(WxXmlModel WxXmlModel) { string XML = ""; switch (WxXmlModel.MsgType) { case "text"://文本回復 var info = oauth.GetUserInfo(Tools.WA_GetAccess_Token.IsExistAccess_Token(), WxXmlModel.FromUserName); Tools.WAEntity.OAuthUser user = Tools.JsonHelper.ParseFromJson(info); var content = WxXmlModel.Content.ToUpper(); string NcbActUrl = ConfigurationManager.AppSettings["NcbActUrl"]; string appid = ConfigurationManager.AppSettings["AppID"]; if (content.Contains("T"))//接受的文字如果包含T { //業(yè)務處理 } else { XML = ResponseMessage.ReText(WxXmlModel.FromUserName, WxXmlModel.ToUserName, "/:rose農場大數(shù)據(jù)歡迎你!/:rose"); } break; case "event": switch (WxXmlModel.Event.ToLower()) { case "subscribe": if (string.IsNullOrEmpty(WxXmlModel.EventKey)) { XML = ResponseMessage.ReText(WxXmlModel.FromUserName, WxXmlModel.ToUserName, "關注成功!/:rose"); } else { XML = ResponseMessage.SubScanQrcode(WxXmlModel.FromUserName, WxXmlModel.ToUserName, WxXmlModel.EventKey);//掃描帶參數(shù)二維碼先關注后推送事件 } break; case "scan": XML = ResponseMessage.ScanQrcode(WxXmlModel.FromUserName, WxXmlModel.ToUserName, WxXmlModel.EventKey);//掃描帶參數(shù)二維碼已關注 直接推送事件 break; case "click"://處理單擊事件 if (WxXmlModel.EventKey == "p1") { //自己的業(yè)務邏輯 } else { //自己的業(yè)務邏輯 } break; case "unsubscribe"://取消關注 break; } break; default://默認回復 break; } Response.Write(XML);//輸出組織的XML信息 }
這就是菜單的信息處理,不明真相的群眾貌似會問那個所謂的ResponseMessage到底有幾個意思呢,OK,我已經無力吐槽我這三天研究出來的微信公共平臺的東西了。
public class ResponseMessage { #region 接收的類型 ////// 接收文本 /// /// /// /// ///public static string GetTextTest(string FromUserName, string ToUserName, string Content, string key) { CommonMethod.WriteTxt(Content);//接收的文本消息 string XML = ""; switch (Content) { case "關鍵字": XML = ReText(FromUserName, ToUserName, "關鍵詞回復測試——興農豐華:" + key); break; case "單圖文": XML = ReArticle(FromUserName, ToUserName, "測試標題", "測試詳情——興農豐華:" + key, "http://www.xnfhtech.com/templets/boze/images/20120130083143544.gif", "http://www.xnfhtech.com/"); break; default: XML = ReText(FromUserName, ToUserName, "無對應關鍵字——興農豐華:" + key); break; } return XML; } /// /// 未關注掃描帶參數(shù)二維碼 /// /// /// /// ///public static string SubScanQrcode(string FromUserName, string ToUserName, string EventKey) { return ""; } /// /// 已關注掃描帶參數(shù)二維碼 /// /// /// /// ///public static string ScanQrcode(string FromUserName, string ToUserName, string EventKey) { return ""; } #endregion #region 回復方式 /// /// 回復文本 /// /// 發(fā)送給誰(openid) /// 來自誰(公眾賬號ID) /// 回復類型文本 ///拼湊的XML public static string ReText(string FromUserName, string ToUserName, string Content) { string XML = "";//回復內容 FuncFlag設置為1的時候,自動星標剛才接收到的消息,適合活動統(tǒng)計使用 return XML; } /// ";//發(fā)送給誰(openid),來自誰(公眾賬號ID) XML += " " + CommonMethod.ConvertDateTimeInt(DateTime.Now) + " ";//回復時間戳 XML += "";//回復類型文本 XML += " 0 /// 回復單圖文 /// /// 發(fā)送給誰(openid) /// 來自誰(公眾賬號ID) /// 標題 /// 詳情 /// 圖片地址 /// 地址 ///拼湊的XML public static string ReArticle(string FromUserName, string ToUserName, string Title, string Description, string PicUrl, string Url) { string XML = ""; return XML; } /// ";//發(fā)送給誰(openid),來自誰(公眾賬號ID) XML += " " + CommonMethod.ConvertDateTimeInt(DateTime.Now) + " ";//回復時間戳 XML += "1 "; XML += " - "; XML += "
0 /// 多圖文回復 /// /// 發(fā)送給誰(openid) /// 來自誰(公眾賬號ID) /// 圖文數(shù)量 /// ///public static string ReArticle(string FromUserName, string ToUserName, int ArticleCount, System.Data.DataTable dtArticle) { string XML = " "; return XML; } #endregion } ";//發(fā)送給誰(openid),來自誰(公眾賬號ID) XML += " " + CommonMethod.ConvertDateTimeInt(DateTime.Now) + " ";//回復時間戳 XML += "" + ArticleCount + " "; foreach (System.Data.DataRow Item in dtArticle.Rows) { XML += " - "; } XML += "
0
OK,加上自己的邏輯代碼,是不是完美的實現(xiàn)了回復?
第七坑,我真心不想計數(shù)了,你確定這個回復可以么?說真的,寶寶不確定,因為你寫了之后知道在哪里調用么,我的乖乖,尼瑪,服務器驗證通過就把回復加上去是最保險的。我已經沒有節(jié)操了。
接下來我們說什么呢,我們就說說獲取用戶信息這個東西吧,因為我們這些東西一般都是基于H5頁面的。所以,就要用到之前我們配置的
這個東東,其實這個相對于前面的至少坑少了很多,真心的,寶寶就暫時不說他坑了。上個代碼吧。
//微信網頁授權2.0 public class Oauth3 { JavaScriptSerializer Jss = new JavaScriptSerializer(); public Oauth3() { } ////// 對頁面是否要用授權 /// /// 微信應用id /// 回調頁面 /// 應用授權作用域snsapi_userinfo(不彈出授權頁面,直接跳轉,只能獲取用戶openid),snsapi_userinfo (彈出授權頁面,可通過openid拿到昵稱、性別、所在地。并且,即使在未關注的情況下,只要用戶授權,也能獲取其信息) ///授權地址 public string GetCodeUrl(string Appid, string redirect_uri, string scope) { return string.Format("https://open.weixin.qq.com/connect/oauth3/authorize?appid={0}&redirect_uri={1}&response_type=code&scope={2}&state=STATE#wechat_redirect", Appid, redirect_uri, scope); } ////// 對頁面是否要用授權 /// /// 微信應用id /// 回調頁面 /// 應用授權作用域snsapi_userinfo(不彈出授權頁面,直接跳轉,只能獲取用戶openid),snsapi_userinfo (彈出授權頁面,可通過openid拿到昵稱、性別、所在地。并且,即使在未關注的情況下,只要用戶授權,也能獲取其信息) ///授權地址 public string GetCodeUrl(string Appid, string redirect_uri, string scope,string state) { return string.Format("https://open.weixin.qq.com/connect/oauth3/authorize?appid={0}&redirect_uri={1}&response_type=code&scope={2}&state={3}#wechat_redirect", Appid, redirect_uri, scope, state); } ////// 用code換取openid 此方法一般是不獲取用戶昵稱時候使用 /// /// /// /// 回調頁面帶的code參數(shù) ///微信用戶唯一標識openid public string CodeGetOpenid(string Appid, string Appsecret, string Code) { string url = string.Format("https://api.weixin.qq.com/sns/oauth3/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code", Appid, Appsecret, Code); string ReText = CommonMethod.WebRequestPostOrGet(url, "");//post/get方法獲取信息 DictionaryDicText = (Dictionary )Jss.DeserializeObject(ReText); if (!DicText.ContainsKey("openid")) return ""; return DicText["openid"].ToString(); } /// ///用code換取獲取用戶信息(包括非關注用戶的) /// /// /// /// 回調頁面帶的code參數(shù) ///獲取用戶信息(json格式) public string GetUserInfo(string Appid, string Appsecret, string Code) { string url = string.Format("https://api.weixin.qq.com/sns/oauth3/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code", Appid, Appsecret, Code); string ReText = CommonMethod.WebRequestPostOrGet(url, "");//post/get方法獲取信息 DictionaryDicText = (Dictionary )Jss.DeserializeObject(ReText); if (!DicText.ContainsKey("openid")) { log.Error("獲取openid失敗,錯誤碼:" + DicText["errcode"].ToString()); return ""; } else { return CommonMethod.WebRequestPostOrGet("https://api.weixin.qq.com/sns/userinfo?access_token=" + DicText["access_token"] + "&openid=" + DicText["openid"] + "&lang=zh_CN", ""); } } /// /// 通過openId獲取用戶信息 /// /// /// ///public string GetUserInfo(string accesstoken, string openid) { string url = string.Format("https://api.weixin.qq.com/cgi-bin/user/info?access_token={0}&openid={1}&lang=zh_CN", accesstoken, openid); return CommonMethod.WebRequestPostOrGet(url, "");//post/get方法獲取信息 } }
我們需要調用的時候直接用里面的方法,獲取微信網頁授權即可,比如對于A控制器下面的B視圖要獲取授權,并且要獲取用戶的相關信息,那么我們直接調用即可,如 GetCodeUrl(appid, "http://" + Url + "/A/B", "snsapi_userinfo")
在這里我還是吐槽一下吧。
第八坑,微信菜單JSON的url拼接,里面的前面不是加了js驗證么,so,特么的,還是乖乖的加上http://。
不過這里授權之后,因為用戶的很多信息我們都要用到,這就是H5頁面?zhèn)髦档膯栴},我在項目里面用的是Session,直接寫一個公用方法,如果Session有值,則直接取值的。對于里面的一些東東,我想說明一下,并不是所有的代碼都要貼出來,我這邊的代碼只是我個人認為需要貼出來的。所以里面的方法可能有大家看不到的,如果需要,可以留言本寶寶,謝謝。
public string getSession() { log.Error("GetSession"); string oauthStr = ""; try { if (Session != null && (Session["oauthStr"] == null || string.IsNullOrEmpty(Session["oauthStr"].ToString()))) { if (!string.IsNullOrEmpty(Request.QueryString["code"])) { Oauth3 oauth = new Oauth3(); string code = Convert.ToString(Request["code"]); oauthStr = oauth.GetUserInfo(ConfigurationManager.AppSettings["AppID"], ConfigurationManager.AppSettings["AppSecret"], code); Session["oauthStr"] = oauthStr; Tools.WAEntity.OAuthUser oAuthUser = new Tools.WAEntity.OAuthUser(); oAuthUser = Tools.JsonHelper.ParseFromJson(oauthStr); } return oauthStr; } else { Tools.WAEntity.OAuthUser oAuthUser = new Tools.WAEntity.OAuthUser(); oAuthUser = Tools.JsonHelper.ParseFromJson (Session["oauthStr"].ToString()); return Session["oauthStr"].ToString(); } } catch (Exception e) { log.Error(e.ToString()); return oauthStr; }; }
然后每次遇到需要獲取信息的頁面,我一般都是調用這個就可以了。
基本上剩下的都是我們自己要處理的業(yè)務邏輯了,繼續(xù)說坑吧。
第九坑,微信上傳圖片,坑的絕對不只是自己。對于這個寶寶真的信了,不管你信不信。特么的圖片不能for循環(huán)上傳。當然,這個只限蘋果機型,大Android還是沒有問題的。
前面說到了JS安全驗證的問題,這里就是調用這些個驗證,請求一些應該的權限,然后獲取圖片信息等等。
放心好了,寶寶現(xiàn)在都是上圖說話,沒圖說個小弟弟呀。。。。。
我們繼續(xù)回來看代碼。
先來個處理Json的
public class JsApi { JavaScriptSerializer Jss = new JavaScriptSerializer(); public JsApi() { } const string URL_FORMAT_TICKET = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token={0}&type=jsapi"; #region 驗證JsApi權限配置 ////// 獲取JsApi權限配置的數(shù)組/四個參數(shù) /// /// 應用id /// 密鑰 ///json格式的四個參數(shù) public string GetJsApiInfo(string Appid, string Appsecret) { string jsapi_ticket = ""; //ticket 緩存7200秒 if (System.Web.HttpContext.Current.Session["jsapi_ticket"] == null) { string ticketurl = string.Format(URL_FORMAT_TICKET, BasicApi.GetAccessToken(Appid, Appsecret));//"https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=" + GetAccessToken(Appid, Appsecret) + "&type=jsapi" jsapi_ticket = CommonMethod.WebRequestPostOrGet(ticketurl, "");//BasicApi.GetTokenSession System.Web.HttpContext.Current.Session["jsapi_ticket"] = jsapi_ticket; System.Web.HttpContext.Current.Session.Timeout = 7200; BasicApi.WriteTxt("jsapi_ticket1:" + jsapi_ticket); } else { jsapi_ticket = System.Web.HttpContext.Current.Session["jsapi_ticket"].ToString(); BasicApi.WriteTxt("jsapi_ticket2:" + jsapi_ticket); } DictionaryrespDic = (Dictionary )Jss.DeserializeObject(jsapi_ticket); jsapi_ticket = respDic["ticket"].ToString();//獲取ticket string timestamp = CommonMethod.ConvertDateTimeInt(DateTime.Now).ToString();//生成簽名的時間戳 string nonceStr = CommonMethod.GetRandCode(16);//生成簽名的隨機串 string url = System.Web.HttpContext.Current.Request.Url.AbsoluteUri.ToString();//當前的地址 BasicApi.WriteTxt("url:" + url); string[] ArrayList = { "jsapi_ticket=" + jsapi_ticket, "timestamp=" + timestamp, "noncestr=" + nonceStr, "url=" + url }; Array.Sort(ArrayList); string signature = string.Join("&", ArrayList); signature = FormsAuthentication.HashPasswordForStoringInConfigFile(signature, "SHA1").ToLower(); string r = "{\"appId\":\"" + Appid + "\",\"timestamp\":" + timestamp + ",\"nonceStr\":\"" + nonceStr + "\",\"signature\":\"" + signature + "\",\"jsApiList\":[\"chooseImage\",\"previewImage\",\"uploadImage\",\"downloadImage\",\"scanQRCode\",\"onMenuShareQQ\"]}"; BasicApi.WriteTxt("r:" + r.Replace(" ", "")); return r.Replace(" ", ""); } }
然后看具體調用。
后臺代碼其實很簡單的,直接輸出配置文件,然后前臺js直接調用即可。
JsApi jsApi = new JsApi(); string config = jsApi.GetJsApiInfo(appId, appSecret); ViewBag.config = config;
前臺代碼,其實也不難,這個有官方的例子的。
OK,后臺方法其實也很簡單,就是一個二進制文件處理,不對,簡單個蛋蛋,特么的,因為路徑的問題,坑了寶寶一個小時,特么的。還有這里建議,等微信圖片下載完成之后再給前臺加載圖片,保證每一個圖片都加載完成,保證后臺的圖片的上傳完成。
////// 下載多媒體文件 /// /// 公眾號 /// 媒體ID /// 返回下載是否成功 /// 添加的圖片類型 ///返回多媒體文件數(shù)據(jù);如果下載失敗,返回null。 public JsonResult DownloadWxPhoto(string mediaId, int types) { ErrorMessage errorMessage; string access_token = BasicApi.GetAccessToken(ConfigurationManager.AppSettings["AppID"], ConfigurationManager.AppSettings["AppSecret"]); byte[] data = MediaHelper.Download(access_token, mediaId, out errorMessage); string files = String.Empty, fileName = String.Empty; files = Server.MapPath("~/Wxinphoto/"); if (!Directory.Exists(files)) { Directory.CreateDirectory(files); } fileName = files + DateTime.Now.Ticks + ".jpg"; if (data != null) { bool flag = writeFile(data, fileName); if (flag) { errorMessage = new ErrorMessage(ErrorMessage.SuccessCode, "下載多媒體文件成功。"); } else { errorMessage = new ErrorMessage(ErrorMessage.ExceptionCode, "從微信服務器下載多媒體文件失敗。"); } } else errorMessage = new ErrorMessage(ErrorMessage.ExceptionCode, "從微信服務器下載多媒體文件失敗。"); return Json(new { result = "/" + urlconvertor(fileName), errorMessage = errorMessage }); } //讀filename到byte[] private byte[] ReadFile(string fileName) { FileStream pFileStream = null; byte[] pReadByte = new byte[0]; try { pFileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read); BinaryReader r = new BinaryReader(pFileStream); r.BaseStream.Seek(0, SeekOrigin.Begin); //將文件指針設置到文件開 pReadByte = r.ReadBytes((int)r.BaseStream.Length); return pReadByte; } catch { return pReadByte; } finally { if (pFileStream != null) pFileStream.Close(); } } //寫byte[]到fileName private bool writeFile(byte[] pReadByte, string fileName) { FileStream pFileStream = null; try { pFileStream = new FileStream(fileName, FileMode.OpenOrCreate); pFileStream.Write(pReadByte, 0, pReadByte.Length); } catch { return false; } finally { if (pFileStream != null) pFileStream.Close(); } return true; } ////// 判斷目標字節(jié)數(shù)組是否位于源字節(jié)數(shù)組的開始 /// /// 源字節(jié)數(shù)組 /// 目標字節(jié)數(shù)組 ///返回目標字節(jié)數(shù)組是否位于源字節(jié)數(shù)組的開始 private bool StartsWithBytes(byte[] source, byte[] target) { if (source == null && target == null) return true; if (source == null && target != null || source != null && target == null) return false; if (source.Length < target.Length) return false; bool startsWith = true; for (int i = 0; i < target.Length; i++) { if (source[i] != target[i]) { startsWith = false; break; } } return startsWith; }
是不是以為這就算完事了,我的乖乖,頭像上傳了,微信攝像頭也特么該調用的調用了,寶寶好幸福,寶寶也是牛人一個了,記住前面的東東,寶寶還沒有說坑呢。
來重復我們的第九個坑,特么的,你JS寫個for循環(huán)要是能循環(huán)把圖片上傳到后臺,寶寶也服氣,真的,寶寶服氣。
直接說吧,最后我自己想了下,也和隊友討論了下,可能是因為微信有什么驗證,導致之后一張圖片上傳成功之后,才能進行一張,但是我們Iphone就是特么的特例,大Android沒用問題的,就是Iphone有了問題,而且問題不小,上傳四張圖片吧,老特么是最后一張,最后,找到了萬能的網友,感謝你,不過寶寶已經忘記了在哪里找到的了,尷尬了。。。。。。。。。。。
請記住,遞歸就特么可以了。
說到這里,寶寶已經不想多說什么了,特么的產品你能不能不裝逼,你特么見過那個微信能回復一個信息直接跳轉網頁的,你咋不去屎呢,聯(lián)想到前幾天大阿里的月餅時間,突然感覺我們程序員挺悲劇的,成功的都是特么的產品,然后出問題的都是我們程序員的鍋?試問一下,這個鍋真心我們程序員該背么。
算了,還是不吐槽了,已經無力了。。。。寶寶92年降臨,現(xiàn)在確實82年的皮膚呀,唉,寶寶累了,真的。
順便給點H5頁面的建議吧。比如當點擊返回鍵的時候,我們需要刷新頁面的時候,就是所謂的判斷頁面要不要刷新,這里有很多種方法,但是微信里面寶寶還是覺得這么干靠譜。
還有,那個微信執(zhí)行完成之后想直接退出當前界面進入微信公眾號界面的,直接調用微信的一個內置的方法即可。記得寫到里面。
WeixinJSBridge.call('closeWindow'); //這是微信關閉當前網頁
這么自信的以為自己搞定了所有,你跑呀,你要跑起來,嗯哼,別不服氣。
微信公眾賬號指第十坑,我自己加的,哈哈,就是前面的JS驗證的時候,你不要頭文件,怎么搞定這些事情,哈哈。是不是寶寶贏了。Oh perfect,I like it。
以上是“php微信公眾賬號開發(fā)遇到的坑有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!