.Net微信开发之如何解决access_token过期问题
因为access_token,在以后的高级功能里面会经常用到,所以这里不得不这里对前面所讲解的access_token改造一下。
另外需要说明的是access_token是变化的,有自己的周期,官方解释为:"有效期为7200秒",这就要求我们把获得的access_token存入一个物理文件或者application中,请求到过期后修改这些内容,需要用的时候读出来.
有些人可能想到了,如果过期我就在获得一个就好了,不用物理文件和application也可以达到同样的效果,但是需要注意了微信平台对每天获得access_token的次数也作了限制,一个用户出发多次,如果用户多,那肯定就超出了。所以我们还是按照以上的思路实现这些功能:在此之前我们已经了解了获得access_token的方法(连接),现在只需要保证它的随时更新就好了.
首先建立一个access_token类
/// <summary> ///access_token 的摘要说明 /// </summary> public class access_token { public access_token() { // //todo: 在此处添加构造函数逻辑 // } string _access_token; string _expires_in; /// <summary> /// 获取到的凭证 /// </summary> public string access_token { get { return _access_token; } set { _access_token = value; } } /// <summary> /// 凭证有效时间,单位:秒 /// </summary> public string expires_in { get { return _expires_in; } set { _expires_in = value; } } }
用下面的xml文件来存放access_token,建立一个xmlfile.xml,把access_youxrq标签的内容写成一个已经过去的时间,这样我们好在一开始调用的时候,发现已经过期,然后获取新的access_token。
<?xml version="1.0" encoding="utf-8"?> <xml> <access_token>初始值可以随便写</access_token> <access_youxrq>1980/12/12 16:06:38</access_youxrq> </xml>
改造一下之前获得access_token的方法,让他给access_token实例赋值
public static access_token getaccess_token() { string appid = 你的appid ; string secret = 你的secret; string strurl = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" + appid + "&secret=" + secret; access_token mode = new access_token(); httpwebrequest req = (httpwebrequest)httpwebrequest.create(strurl); req.method = "get"; using (webresponse wr = req.getresponse()) { httpwebresponse myresponse = (httpwebresponse)req.getresponse(); streamreader reader = new streamreader(myresponse.getresponsestream(), encoding.utf8); string content = reader.readtoend(); //response.write(content); //在这里对access_token 赋值 access_token token = new access_token(); token = jsonhelper.parsefromjson<access_token>(content); mode.access_token = token.access_token; mode.expires_in = token.expires_in; } return mode; }
以上的方法用到了json对象的处理,所以我把jsonhelper的代码一贴出来供大家参考,一下就是jsonhelper.cs的代码:
using system; using system.io; using system.text; using system.runtime.serialization.json; public class jsonhelper { /// <summary> /// 生成json格式 /// </summary> /// <typeparam name="t"></typeparam> /// <param name="obj"></param> /// <returns></returns> public static string getjson<t>(t obj) { datacontractjsonserializer json = new datacontractjsonserializer(obj.gettype()); using (memorystream stream = new memorystream()) { json.writeobject(stream, obj); string szjson = encoding.utf8.getstring(stream.toarray()); return szjson; } } /// <summary> /// 获取json的model /// </summary> /// <typeparam name="t"></typeparam> /// <param name="szjson"></param> /// <returns></returns> public static t parsefromjson<t>(string szjson) { t obj = activator.createinstance<t>(); using (memorystream ms = new memorystream(encoding.utf8.getbytes(szjson))) { datacontractjsonserializer serializer = new datacontractjsonserializer(obj.gettype()); return (t)serializer.readobject(ms); } } }
我们还需要些一个判断access_token是否过期如果过期更新xml文件的方法。
/// <summary> /// 根据当前日期 判断access_token 是否超期 如果超期返回新的access_token 否则返回之前的access_token /// </summary> /// <param name="datetime"></param> /// <returns></returns> public static string isexistaccess_token() { string token = string.empty; datetime youxrq; // 读取xml文件中的数据,并显示出来 ,注意文件路径 string filepath = server.mappath("xmlfile.xml"); streamreader str = new streamreader(filepath, system.text.encoding.utf8); xmldocument xml = new xmldocument(); xml.load(str); str.close(); str.dispose(); token = xml.selectsinglenode("xml").selectsinglenode("access_token").innertext; youxrq = convert.todatetime(xml.selectsinglenode("xml").selectsinglenode("access_youxrq").innertext); if (datetime.now > youxrq) { datetime _youxrq = datetime.now; access_token mode = getaccess_token(); xml.selectsinglenode("xml").selectsinglenode("access_token").innertext = mode.access_token; _youxrq = _youxrq.addseconds(int.parse(mode.expires_in)); xml.selectsinglenode("xml").selectsinglenode("access_youxrq").innertext = _youxrq.tostring(); xml.save(filepath); token = mode.access_token; } return token; }
好了,完成了上面的工作,我只需要在使用到access_token的时如下调用就ok了,“客户再也不用担心token的过期”
string _access_token = isexistaccess_token();
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
.Net语言Smobiler开发之如何仿微信朋友圈的消息样式
-
.Net微信开发之如何解决access_token过期问题
-
.Net语言Smobiler开发之如何仿微信朋友圈的消息样式
-
企业微信平台开发--解决access_token过期的问题
-
.Net微信网页开发解决用户在不同公众号或在公众号、移动应用之间帐号统一问题
-
企业微信平台开发--解决access_token过期的问题
-
微信开发之php表单微信中自动提交两次问题解决办法
-
.Net微信网页开发解决用户在不同公众号或在公众号、移动应用之间帐号统一问题
-
.Net微信开发之如何解决access_token过期问题解决办法
-
微信开发之php表单微信中自动提交两次问题解决办法