Exemple #1
0
 public Client(string clientId, string clientSecret, Auth oAuth)
 {
     api        = new APIWrapper(clientId, clientSecret);
     this.oAuth = oAuth;
 }
Exemple #2
0
 public static Auth FromJson(string json)
 {
     return(Auth.FromJson(JToken.Parse(json)));
 }