예제 #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"));
 }