//Constructor
 public WithingsAppAuthenticator(WithingsAppCredentials appCredentials)
 {
     ConsumerKey    = appCredentials.ConsumerKey;
     ConsumerSecret = appCredentials.ConsumerSecret;
 }
예제 #2
0
 public WithingsClient(WithingsAppCredentials credentials, AccessToken accessToken)
 {
     this.AppCredentials = credentials;
     this.AccessToken    = accessToken;
 }