using SKIT.FlurlHttpClient.Wechat.Api.Models;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace EzWechat
|
{
|
|
public interface IWechatService
|
{
|
/// <summary>
|
/// 使用jsocde 换区 code
|
/// </summary>
|
/// <param name="jscode"></param>
|
/// <returns></returns>
|
Task<string> GetOpenID(string jscode);
|
/// <summary>
|
/// 获取手机号码
|
/// </summary>
|
/// <param name="bindgetphonenumber"></param>
|
/// <returns></returns>
|
Task<string> GetPhone(string bindgetphonenumber);
|
}
|
}
|