示例#1
0
 public static string GetErrorMsg(this OAuthTokenResponse response)
 {
     return(response.GetByKey("errmsg"));
 }
示例#2
0
 public static string GetErrorCode(this OAuthTokenResponse response)
 {
     return(response.GetByKey("errcode"));
 }
示例#3
0
 public static string GetOpenId(this OAuthTokenResponse response)
 {
     return(response.GetByKey("openid"));
 }
示例#4
0
 public static string GetScope(this OAuthTokenResponse response)
 {
     return(response.GetByKey("scope"));
 }
示例#5
0
 public static string GetUnionId(this OAuthTokenResponse response)
 {
     return(response.GetByKey("unionid"));
 }