From a04f18db4f6a3aedd8ef91a6098a7997b6e9e0eb Mon Sep 17 00:00:00 2001 From: Matt Burke Date: Fri, 1 Nov 2013 08:02:14 -0400 Subject: [PATCH] Use the token authenticator. --- Octokit/Authentication/Authenticator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/Authentication/Authenticator.cs b/Octokit/Authentication/Authenticator.cs index 50a918d3..a9a0e856 100644 --- a/Octokit/Authentication/Authenticator.cs +++ b/Octokit/Authentication/Authenticator.cs @@ -10,7 +10,7 @@ namespace Octokit.Internal { { AuthenticationType.Anonymous, new AnonymousAuthenticator() }, { AuthenticationType.Basic, new BasicAuthenticator() }, - { AuthenticationType.Oauth, new AnonymousAuthenticator() } + { AuthenticationType.Oauth, new TokenAuthenticator() } }; public Authenticator(ICredentialStore credentialStore)