예제 #1
0
파일: Client.cs 프로젝트: jorisdg/wink
 public Client(string clientId, string clientSecret, Auth oAuth)
 {
     api        = new APIWrapper(clientId, clientSecret);
     this.oAuth = oAuth;
 }
예제 #2
0
파일: Client.cs 프로젝트: jorisdg/wink
 public static Auth FromJson(string json)
 {
     return(Auth.FromJson(JToken.Parse(json)));
 }