这篇文章将为大家详细讲解有关微信公众号平台接口开发如何获取access_token,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
纳雍网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、成都响应式网站建设等网站项目制作,到程序开发,运营维护。创新互联成立于2013年到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。新建Asp.net MVC 4.0项目
WeChatSubscript是项目UI层
WeChatTools是封装操作访问公众号接口的一些方法类库
获取AccssToken
我们要的得到AccessToken,这是所有接口访问的基础,我们看看官方给出的接口调用文档
很简单明了,grant_type=client_credential,这是固定的不会变
appid与secret就是前面一章我叫大家记起来的那个认证口令数据。
下边我们来实现这个功能,新建WeCharBase.cs
public class WeCharBase { private static readonly string appId; private static readonly string appSecret; static WeCharBase() { appId = "**********"; appSecret = "832090bfddabbac19cc8da5053aea47b"; } public static string AccessToken { get { return GetAccessToken(); } } ///获取access_token /// /// ///private static string GetAccessToken() { if (HttpContext.Current == null) { return GetToken(); } var accessTokenCache = HttpContext.Current.Cache["access_token"]; if (accessTokenCache != null) { return accessTokenCache.ToString(); } else { return GetToken(); } } /// 获取ccess_token ///private static string GetToken() { try { var client = new WebClient(); client.Encoding = Encoding.UTF8; var responseData = client.DownloadString(string.Format("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={0}&secret={1}", appId, appSecret)); var javaScriptSerializer = new JavaScriptSerializer(); var accessDictionary = javaScriptSerializer.Deserialize >(responseData); var accessToken = accessDictionary["access_token"]; if (accessToken == null) { return string.Empty; } HttpContext.Current.Cache.Insert("access_token", accessToken, null, DateTime.Now.AddSeconds(7100), TimeSpan.Zero, CacheItemPriority.Normal, null); HttpContext.Current.Cache.Remove("ticket"); GetTicket(); return accessToken.ToString(); } catch (Exception ex) { return ex.Message; } } }
细心的童鞋功能注意到这里用了HttpContext.Current.Cache,为什么呢?
因为access_token在官方服务器会缓存2个小时,请求一次,这个access_token在2个小时内都有效
所以请求一次得到access_token后,在以后的2个小时内都可以用这个access_token去访问其他接口
所以没有必要每次请求不同的接口都请求access_token一次
UI层实现
我们新建控制器SubscriptController.cs
新增2个Action,ViewAccessToken
///获取AccessToken ///public ActionResult ViewAccessToken() { return View(); } /// 获取AccessToken ///public ActionResult GetAccessToken() { return Content(WeCharBase.AccessToken); }
新增视图
获取access token
|
运行项目,看看效果
关于“微信公众号平台接口开发如何获取access_token”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。