Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to write a native app to access a users google calendar. I am trying to use the example that google has provided to get authentication but it never seems to fire the authentication function

  private void Window_Initialized(object sender, EventArgs e)
      {
var provider = new NativeApplicationClient(GoogleAuthenticationServer.Description);

            provider.ClientIdentifier = "<My Client Id here>";
            provider.ClientSecret = "<My Client Secret here";

            var auth = new OAuth2Authenticator<NativeApplicationClient>(provider, (p) => GetAuthorization(provider));

            CalendarService service = new CalendarService();

            CalendarsResource.GetRequest cr = service.Calendars.Get("{primary}");

            if (cr.CalendarId != null)
            {
                Console.WriteLine("Fetching calendar");
                //Google.Apis.Calendar.v3.Data.Calendar c = service.Calendars.Get("{primary}").Fetch();

            }
            else
            {
                Console.WriteLine("Service not found");
            }
}

Here is the code that I am using for Authentication. I never see the console writeline get published.

private static IAuthorizationState GetAuthorization(NativeApplicationClient arg)
        {
            Console.WriteLine("Authorization Requested");

            IAuthorizationState state = new AuthorizationState(new[] { CalendarService.Scopes.Calendar.GetStringValue() });

            state.Callback = new Uri(NativeApplicationClient.OutOfBandCallbackUrl);
            Uri authUri = arg.RequestUserAuthorization(state);

            Process.Start(authUri.ToString());
            // Request authorization from the user and get the code
            string authCode = Console.ReadLine();

            // Retrieve the access token by using the authorization code:
            return arg.ProcessUserAuthorization(authCode, state);
        }

Are there any better tutorials available or am I doing something wrong?

share|improve this question

2 Answers

Check out the new docs. You'll need to replace

var auth = new OAuth2Authenticator<NativeApplicationClient>(provider, (p) => GetAuthorization(provider));

with

AuthenticatorFactory.GetInstance().RegisterAuthenticator(
          () => new OAuth2Authenticator(provider, GetAuthentication));

As the comment says, when you call var service = new CalendarService(), the previously registered authenticator will automatically be called.

share|improve this answer
What references need to be added to use this? When ever I add this piece of code in visual studio says it can't find the factory and there is no resolve action for it either. – joshwl2003 Apr 19 '12 at 12:16
As in the sample, using System; using System.Diagnostics; using DotNetOpenAuth.OAuth2; using Google.Apis.Authentication; using Google.Apis.Authentication.OAuth2; using Google.Apis.Authentication.OAuth2.DotNetOpenAuth; using Google.Apis.Calendar.v3; using Google.Apis.Calendar.v3.Data; using Google.Apis.Util; You can download the DLL at code.google.com/p/google-api-dotnet-client/wiki/… – bossylobster Apr 19 '12 at 16:11

The example code is broken. To make the service use your authenticator, you need to connect it. In the example there is no association between the service and the authenticator. Create the service like this:

var service = new CalendarService(new BaseClientService.Initializer()
{
    Authenticator = auth
});

Look at https://code.google.com/p/google-api-dotnet-client/ for better documentation/working code.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.