示例#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)));
 }