啓用開發模式須要先成爲開發者,並且編輯模式和開發模式只能選擇一個,進入微信公衆平臺-開發模式,以下:服務器
須要填寫url和token,當時本人填寫這個的時候花了很久,我本覺得填寫個服務器的url就能夠了(80端口),可是不行,主要是沒有仔細的閱讀提示信息,因此老是提示微信
從上面能夠看出,點擊提交後微信會向咱們填寫的服務器發送幾個參數,而後須要原樣返回出來,因此在提交url的時候,先在服務器建立接口測試返回echostr參數內容。代碼:微信公衆平臺
//成爲開發者url測試,返回echoStr public void InterfaceTest() { string token = "填寫的token"; if (string.IsNullOrEmpty(token)) { return; } string echoString = HttpContext.Current.Request.QueryString["echoStr"]; string signature = HttpContext.Current.Request.QueryString["signature"]; string timestamp = HttpContext.Current.Request.QueryString["timestamp"]; string nonce = HttpContext.Current.Request.QueryString["nonce"]; if (!string.IsNullOrEmpty(echoString)) { HttpContext.Current.Response.Write(echoString); HttpContext.Current.Response.End(); } }