Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions Samples/ObjC/SignInSample/Source/AuthInspectorViewController.m
Original file line numberDiff line numberDiff line change
Expand Up@@ -36,13 +36,12 @@ - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
_keyPaths = @[
@"authentication.accessToken",
@"authentication.accessTokenExpirationDate",
@"authentication.refreshToken",
@"authentication.idToken",
@"accessToken.tokenString",
@"accessToken.expirationDate",
@"refreshToken.tokenString",
@"idToken.tokenString",
@"grantedScopes",
@"userID",
@"serverAuthCode",
@"profile.email",
@"profile.name",
];
Expand DownExpand Up@@ -140,4 +139,3 @@ - (CGFloat)heightForTableView:(UITableView *)tableView content:(NSString *)conte
}

@end

2 changes: 1 addition & 1 deletion Samples/ObjC/SignInSample/Source/SignInViewController.m
Original file line numberDiff line numberDiff line change
Expand Up@@ -248,7 +248,7 @@ - (void)updateButtons {

- (IBAction)signIn:(id)sender {
[GIDSignIn.sharedInstance signInWithPresentingViewController:self
completion:^(GIDGoogleUser *user,
completion:^(GIDUserAuth *userAuth,
NSError *error) {
if (error) {
self->_signInAuthStatus.text =
Expand Down