Inheritance: IClientAuthorizationTracker
Ejemplo n.º 1
0
        public FacebookConsumer(string clientIdentifier, string clientSecret)
            : base(FacebookDescription, clientIdentifier, clientSecret)
        {
            AuthorizationTracker = new AuthorizationTracker();

            // See http://stackoverflow.com/questions/15212959/bad-request-on-processuserauthorization-dotnetopenauth-4-2-2-13055
            ClientCredentialApplicator = ClientCredentialApplicator.PostParameter(clientSecret);
        }
Ejemplo n.º 2
0
        public GoogleConsumer(string clientIdentifier, string clientSecret)
            : base(GoogleDescription, clientIdentifier, clientSecret)
        {
            AuthorizationTracker = new AuthorizationTracker();

            // See https://groups.google.com/forum/?fromgroups#!topic/dotnetopenid/ibzRfE4TpB0
            ClientCredentialApplicator = ClientCredentialApplicator.PostParameter(clientSecret);
        }
Ejemplo n.º 3
0
 public GoogleConsumer()
     : base(GoogleDescription)
 {
     AuthorizationTracker =
         new AuthorizationTracker();
 }
Ejemplo n.º 4
0
 public GoogleConsumer()
     : base(GoogleDescription)
 {
     AuthorizationTracker =
         new AuthorizationTracker();
 }
Ejemplo n.º 5
0
 public FacebookConsumer()
     : base(FacebookDescription)
 {
     AuthorizationTracker =
         new AuthorizationTracker();
 }
Ejemplo n.º 6
0
 public FacebookConsumer()
     : base(FacebookDescription)
 {
     AuthorizationTracker =
         new AuthorizationTracker();
 }