Closed GoogleCodeExporter closed 9 years ago
Here's my code btw. I haven't modified the gtm-oauth classes at all.
- (void)connectToSavedAccountSession
{
// Connect to saved account if available
GTMOAuth2Authentication *auth = [GTMOAuth2WindowController authForGoogleFromKeychainForName:[NSString stringWithFormat:@"%@ - Google Reader",self.clientName]
clientID:self.clientID
clientSecret:self.clientSecret];
[mAuth autorelease];
mAuth = [auth retain];
}
- (void)signInWithDelegate:(id)delegate parentWindow:(NSWindow*)window
{
[self signOut];
// For Google APIs, the scope strings are available
// in the service constant header files.
NSString *scope = @"https://www.googleapis.com/auth/plus.me";
// Display the autentication sheet
GTMOAuth2WindowController *windowController;
windowController = [GTMOAuth2WindowController controllerWithScope:scope
clientID:self.clientID
clientSecret:self.clientSecret
keychainItemName:[NSString stringWithFormat:@"%@ - Google Reader",self.clientName]
resourceBundle:nil];
// During display of the sign-in window, loss and regain of network
// connectivity will be reported with the notifications
// kGTMOAuth2NetworkLost/kGTMOAuth2NetworkFound
//
// See the method signInNetworkLost: for an example of handling
// the notification.
// Optional: Google servers allow specification of the sign-in display
// language as an additional "hl" parameter to the authorization URL,
// using BCP 47 language codes.
//
// For this sample, we'll force English as the display language.
NSDictionary *params = [NSDictionary dictionaryWithObject:@"en"
forKey:@"hl"];
windowController.signIn.additionalAuthorizationParameters = params;
// Optional: display some html briefly before the sign-in page loads
NSString *html = @"<html><body><div align=center>Loading sign-in page...</div></body></html>";
windowController.initialHTMLString = html;
// Most applications will not want the dialog to remember the signed-in user
// across multiple sign-ins, but the sample app allows it.
// windowController.shouldPersistUser = [mPersistUserCheckbox state];
// By default, the controller will fetch the user's email, but not the rest of
// the user's profile. The full profile can be requested from Google's server
// by setting this property before sign-in:
//
// windowController.signIn.shouldFetchGoogleUserProfile = YES;
//
// The profile will be available after sign-in as
//
// NSDictionary *profile = windowController.signIn.userProfile;
[windowController signInSheetModalForWindow:window
delegate:self
finishedSelector:@selector(windowController:finishedWithAuth:error:)];
}
- (void)signOut
{
if ([mAuth.serviceProvider isEqual:kGTMOAuth2ServiceProviderGoogle]) {
// Remove the token from Google's servers
[GTMOAuth2WindowController revokeTokenForGoogleAuthentication:mAuth];
}
// Remove the stored Google authentication from the keychain, if any
[GTMOAuth2WindowController removeAuthFromKeychainForName:[NSString stringWithFormat:@"%@ - Google Reader",self.clientName]];
// Discard our retained authentication object
[mAuth release];
mAuth = nil;
}
- (BOOL)isAuthorized
{
return mAuth.canAuthorize;
}
- (void)windowController:(NSWindowController*)windowController
finishedWithAuth:(GTMOAuth2Authentication*)theAuth error:(NSError*)error
{
if (error) NSLog(@"Error: %@",[error localizedDescription]);
[mAuth release];
mAuth = [theAuth retain];
}
Original comment by mwoods...@googlemail.com
on 31 Dec 2011 at 10:44
[deleted comment]
[deleted comment]
[deleted comment]
This sounds like an issue with the Reader API, not with the gtm-oauth2
controllers.
Original comment by grobb...@google.com
on 4 Jan 2012 at 1:59
Closing as done since this seems to be pretty old without any new info.
Original comment by thomasvl@google.com
on 30 Oct 2014 at 1:49
Original issue reported on code.google.com by
mwoods...@googlemail.com
on 31 Dec 2011 at 10:41