public static WeChatUserInfo Get(string openId) { var weChatUser = new WeChatUserInfo(openId); var response = weChatUser.RequestAsModel <WeChatUserInfo>(); return(response); }
public async static Task <WeChatUserInfo> GetAsync(string openId) { var weChatUser = new WeChatUserInfo(openId); var response = await weChatUser.RequestAsModelAsync <WeChatUserInfo>(); return(response); }