Index: Src/GoogleApis.Auth.WP/OAuth2/GoogleWebAuthorizationBroker.cs =================================================================== --- a/Src/GoogleApis.Auth.WP/OAuth2/GoogleWebAuthorizationBroker.cs +++ b/Src/GoogleApis.Auth.WP/OAuth2/GoogleWebAuthorizationBroker.cs @@ -87,7 +87,7 @@ { var installedApp = new AuthorizationCodeWPInstalledApp(userCredential.Flow); // Create an authorization code installed app instance and authorize the user. - UserCredential newUserCredential = await installedApp.AuthorizeAsync(userCredential.UderId, + UserCredential newUserCredential = await installedApp.AuthorizeAsync(userCredential.UserId, taskCancellationToken).ConfigureAwait(false); userCredential.Token = newUserCredential.Token; }