I'm wanting to allow users to create an account on my server automatically using their Game Center account. When my iOS app opens up it requires a connection and authentication with an XMPP server in order to communicate with the game server. I'm trying to find something in GKLocalPlayer that is private to a logged in device that I could use to create/validate a remote user login, but the only thing that seems to be unique to the player is their playerID which is fairly public.
I don't really want to use GameCenter for everything because then it partitions my user base to only iOS devices.
From developer.apple.com
... if your application connects to your own network services, you can use the player identifier on your service to save data there as well.
Since the player identifier isn't private, how sure can we be sure that this isn't being faked?
loadFriendsWithCompletionHandler:and I believe they are also available via the leader board. I'm sure GameCenter uses an internal secret to ensure that it's logged in when making the requests, but since I don't have access to it, I seem to have no way to validate a GameCenter login from a thirdparty server. – Kendall Hopkins Feb 24 '11 at 18:21