Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to authenticate a GKLocalPlayer with Game Center. However, the code supplied by Apple

- (void) authenticateLocalPlayer
{
    [[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error) {
         if (error == nil)
         {
              // Insert code here to handle a successful authentication.
              NSLog(@"Logged in.");
         }
         else
         {
             // Your application can process the error parameter to report the error to the player.
             NSLog(@"%@", [error description]);
         }
     }];
}

does not seem to do the trick for me. I always get an alert "Could not connect to Game Center server." with the option to "Retry" or "Cancel". Neither of the NSLog statements is executed, so I guess that the completionHandler is not even fired.

If I press retry, I get the following error:

Error Domain=GKErrorDomain Code=7 "The requested operation could not be completed because local player is already authenticating." UserInfo=0x8915f80 {NSLocalizedDescription=The requested operation could not be completed because local player is already authenticating.}

Anyone have any idea what is going wrong?

share|improve this question
Having this problem on my app. I just upgraded to 4.2. No idea if that is causing it -- never tried in 4.1. Any suggestions what to do about it? – William Jockusch Nov 26 '10 at 1:06

3 Answers

up vote 6 down vote accepted

One possible problem I found with connecting to Game Center is that your date may be wrong on the device. Check if your date is the actual current date. Somehow Game Center does not allow connections from devices with incorrect dates.

share|improve this answer
Awesome! You solved a very irritating problem for me. – Joshua Goossen Mar 2 '12 at 14:37

Exact same problem here. It worked about 1 out of 5 times for me yesterday morning. Today I haven't been able to login to Game Center sandbox even once (using the same code you posted).

edit: I changed the deployment target to 3.0 "Project - Edit Active Target - iOS Deployment Target"

Then I was able to select 4.1 simulator for my active executable and I can login and everything works. Something with the 4.2 sandbox I guess...

share|improve this answer
I think it was basically Game Center itself that wasn't working. As of yesterday everything works as expected. – Joseph Tura Sep 24 '10 at 12:46

You may try to reset the simulator to default entirely. It worked for me, once it is reset, my iDevice works again.

Depend on the ios version you couldn't log in, then set the simulator to foreground and go to the upper left. iOS Simulator -> Reset Content and Settings -> Click on Reset button.

I hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.