public static string GetErrorMsg(this OAuthTokenResponse response) { return(response.GetByKey("errmsg")); }
public static string GetErrorCode(this OAuthTokenResponse response) { return(response.GetByKey("errcode")); }
public static string GetOpenId(this OAuthTokenResponse response) { return(response.GetByKey("openid")); }
public static string GetScope(this OAuthTokenResponse response) { return(response.GetByKey("scope")); }
public static string GetUnionId(this OAuthTokenResponse response) { return(response.GetByKey("unionid")); }