示例#1
0
 protected ClientProvider(OauthConfigurationElement oauth)
 {
     ClientId     = oauth.ClientId;
     ClientSecret = oauth.ClientSecret;
     CallBackUrl  = oauth.CallbackUrl;
     Scope        = oauth.Scope;
 }
示例#2
0
 public GoogleClient(OauthConfigurationElement oauth)
     : base(oauth)
 {
 }
示例#3
0
 public MicrosoftClient(OauthConfigurationElement oauth)
     : base(oauth)
 {
 }
示例#4
0
 public FacebookClient(OauthConfigurationElement oauth)
     : base(oauth)
 {
 }