Closed GoogleCodeExporter closed 9 years ago
Dove into the code and took a stab at writing the method that might do this:
- (void)flushCredentials
{
[self removeValueFromKeychainUsingName:@"oauth_token_request"];
[self removeValueFromKeychainUsingName:@"oauth_token_request_secret"];
[self removeValueFromKeychainUsingName:@"oauth_token_access"];
[self removeValueFromKeychainUsingName:@"oauth_token_access_secret"];
[self removeValueFromKeychainUsingName:@"oauth_session_handle"];
}
Even calling this method before the meat of initWithCredentials was run didn't
seem
to reset the authentication state. Any guess where I'm going wrong here?
Original comment by weeb...@gmail.com
on 11 Apr 2009 at 2:29
Original comment by karl.a...@gmail.com
on 12 Apr 2009 at 8:06
Original issue reported on code.google.com by
weeb...@gmail.com
on 9 Apr 2009 at 5:25