3.0取得介面呼叫憑證
①介面說明
access_token是公眾號的全域唯一票據,當公號呼叫各介面時都需使用access_token。開發者需要進行妥善保存。 access_token的儲存至少要保留512個字元空間。 access_token的有效期限目前為2h(7200s),需定時刷新,重複取得將導致上次取得的access_token失效。
公共平台的API呼叫所需的access_token的使用及產生方式說明:
1、為了保密appsecrect,第三方需要一個access_token取得和刷新的中控伺服器。而其他業務邏輯伺服器所使用的access_token都來自於該中控伺服器,不應該各自去刷新,否則會造成access_token覆蓋而影響業務;
2、目前access_token的有效期透過傳回的expire_in來傳達,目前是7200秒之內的值。中控伺服器需要根據這個有效時間提前去刷新新access_token。在刷新過程中,中控伺服器對外輸出的依然是舊access_token,此時公眾平台後台會保證在刷新短時間內,新舊access_token都可用,這保證了第三方業務的平滑過渡;
#3、access_token的有效時間可能會在未來有調整,所以中控伺服器不僅需要內部定時主動刷新,還需要提供被動刷新access_token的接口,這樣便於業務伺服器在API調用獲知access_token已逾時的情況下,可以觸發access_token的刷新流程。
怎麼取得AppID和AppSecret! ?
公眾號可以使用AppID和AppSecret呼叫本介面來取得access_token。 AppID和AppSecret可在微信公眾平台官網-開發者中心頁中取得。 (需要已成為開發者,且帳號沒有異常狀態)
注意:在呼叫所有微信介面時均使用https協定;還有就是如果第三方不使用中控伺服器,而是使選擇各個業務邏輯點各自去刷新access_taken,那麼就有可能會產生衝突,導致服務不穩定。
②請求介面
#介面呼叫請求說明:
/// <summary> /// 获取公众号的ACCESS_TOKEN /// </summary> /// <returns>返回操作凭据</returns> public string GetAccessToken() { if (HttpContext.Current.Cache["access_token"] == null) { string para = string.Format("grant_type=client_credential&appid={0}&secret={1}", AppID, AppSecret); string results = SendHTTPRequest("POST", "https://api.weixin.qq.com/cgi-bin/token", para); JObject obj = (JObject)JsonConvert.DeserializeObject(results); //*******************************设置access_token的过期机制************************** Cache cache = HttpContext.Current.Cache; cache.Insert("access_token", obj["access_token"].ToString(), null, DateTime.Now.AddSeconds(7000), System.Web.Caching.Cache.NoSlidingExpiration); //******************************************end************************************* return HttpContext.Current.Cache["access_token"].ToString(); } else { return HttpContext.Current.Cache["access_token"].ToString(); } }
#