因微信分享功能,获取access_token(一个toke 套一个token,7200秒过期时间)所以用到了asp.net Cache ,暂时发现Cache是最好用的,可以设置缓存自动过期时间,不说了 直接上代码。。。就一两行代码。。。。,暂时记下来,方便以后快速回忆代码。。。
//获取缓存 object cacheaccess_token = Cache.Get("access_token"); //添加缓存 Cache.Insert("access_token", accesstoken, null, DateTime.Now.AddSeconds(expires_in), Cache.NoSlidingExpiration); 具体的参数值大家网上查询吧。。。。。。。
时间: 2024-10-10 22:23:32