using LiveForum.Model.Dto.Wechat;
using System.Threading.Tasks;
namespace LiveForum.IService.Others
{
///
/// 微信小程序服务接口
/// 定义业务需要的微信小程序功能,方便替换实现
///
public interface IWechatMiniProgramService
{
///
/// 通过 code 获取用户的 openId 和 sessionKey
///
/// 微信小程序登录凭证 code
/// 用户登录信息(包含 openId、sessionKey 等)
Task GetLoginInfoByCodeAsync(string jsCode);
///
/// 通过手机号 code 获取用户手机号
///
/// getPhoneNumber 回调中的 code
/// 手机号,失败返回 null
Task GetPhoneNumberByCodeAsync(string phoneCode);
}
}