mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:23:25 +08:00
添加项目文件。
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/7/13 21:58:04
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
|
||||
using System.Threading.Tasks;
|
||||
using CoreCms.Net.Caching.Manual;
|
||||
using CoreCms.Net.Configuration;
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.Caching.AccressToken
|
||||
{
|
||||
/// <summary>
|
||||
/// 微信帮助类
|
||||
/// </summary>
|
||||
public static class WeChatCacheAccessTokenHelper
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取微信小程序accessToken
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static string GetWxOpenAccessToken()
|
||||
{
|
||||
//获取小程序AccessToken
|
||||
var cacheAccessToken = ManualDataCache.Instance.Get<WeChatAccessToken>(GlobalEnumVars.AccessTokenEnum.WxOpenAccessToken.ToString());
|
||||
return cacheAccessToken?.accessToken;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取微信公众号accessToken
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static string GetWeChatAccessToken()
|
||||
{
|
||||
//获取微信AccessToken
|
||||
var cacheAccessToken = ManualDataCache.Instance.Get<WeChatAccessToken>(GlobalEnumVars.AccessTokenEnum.WeiXinAccessToken.ToString());
|
||||
return cacheAccessToken?.accessToken;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user