protected AbstractClientProvider(OAuthWebConfigurationElement ccRoot, OAuthConfigurationElement ccOauth)
 {
     // TODO: This copying still feels wrong - config class and this client base class share data
     ClientId = ccOauth.ClientId;
     ClientSecret = ccOauth.ClientSecret;
     CallBackUrl = ccOauth.CallbackUrl;
     Scope = ccOauth.Scope;
     Endpoint = ccOauth.Endpoint;
     
     //AcceptedRedirectUrl = ccRoot.AcceptedRedirectUrl;
     FailedRedirectUrl = ccRoot.FailedRedirectUrl;
     Proxy = ccRoot.Proxy;
 }
Beispiel #2
0
 public PayPalClient(OAuthWebConfigurationElement ccRoot, OAuthConfigurationElement ccOauth)
     : base(ccRoot, ccOauth)
 {
     //ServiceType = typeof (PayPalService);
 }
Beispiel #3
0
 public GoogleClient(OAuthWebConfigurationElement ccRoot, OAuthConfigurationElement ccOauth)
     : base(ccRoot, ccOauth)
 {
     //ServiceType = typeof (GoogleService);
 }
Beispiel #4
0
 public TwitterClient(OAuthWebConfigurationElement ccRoot, OAuthConfigurationElement ccOauth)
     : base(ccRoot, ccOauth)
 {
     //ServiceType = typeof(TwitterService);
 }
 public FacebookClient(OAuthWebConfigurationElement ccRoot, OAuthConfigurationElement ccOauth)
     : base(ccRoot, ccOauth)
 {
     //ServiceType = typeof (FacebookService);
 }
 public WindowsLiveClient(OAuthWebConfigurationElement ccRoot, OAuthConfigurationElement ccOauth)
     : base(ccRoot, ccOauth)
 {
     //ServiceType = typeof (WindowsLiveService);
 }