Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delegate not working for google plus integration

Tags:

ios

I am trying to implement google plus integration,sign in working properly,the problem is after sign in not entering in - (void)finishedWithAuth my coe follows:

GPPSignIn *signIn = [GPPSignIn sharedInstance];

    signIn.clientID = @"CLIENT_ID";

    signIn.scopes = [NSArray arrayWithObjects:
                     kGTLAuthScopePlusLogin,
                     nil];    
    signIn.delegate = self;

Already declared GPPSignInDelegate delegate

like image 425
Phantomcho Avatar asked Feb 24 '26 23:02

Phantomcho


1 Answers

Its the problem with checking call back url, plz check the redirect url in appdelegate

like image 118
Justin Mathews Avatar answered Feb 26 '26 13:02

Justin Mathews