using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace YBDevice.NApi
{
///
/// 微信开放平台openticket配置
///
public interface IWXService
{
///
/// 获取openticket
///
///
///
Task GetOpenTicketAsync(string componentAppId);
///
/// 获取公众号的刷新token
///
/// 公众号appid
/// 开放平台appid
///
Task GetRefreshToken(string authorizerId, string componentAppId);
}
}