You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
358 B
C#
12 lines
358 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Core;
|
|
|
|
public interface IWechatOAuth
|
|
{
|
|
Task<TokenModel> GetAccessTokenAsync(string code, string state = "");
|
|
string GetAuthorizeUrl(string state = "");
|
|
Task<UserInfoModel> GetUserInfoAsync(string accessToken, string openId);
|
|
Task<TokenModel> GetRefreshTokenAsync(string refreshToken);
|
|
}
|