Gamelift with Apple Gamecenter and Google Play Services

0

Good day! I’m studying some solutions for my casual multiplayer game for mobile with Unreal Engine and I’m quite interested in GameLift. I’m studying the ways to authenticate and generate tokens for GameLift and I’m thinking in a way to automatic log in user when connected on Apple Gamecenter or Google Play Services. I’m seeing solutions with Cognito but I don’t have any way to connect with those services. How can I get this authentication cycle working, is it possible? Thanks!

質問済み 3年前328ビュー
3回答
0
承認された回答

Hey GeekFox,

Authentication is ideally handled on the client side or the game backend service; GameLift focuses on integration of game servers with cloud hosting solutions (e.g. EC2).

You could checkout GameSparks, which has out-of-the-box solution for Authentication with Apple [1] or Google Play: [2]

Alternativly, you could implement your own Authentication solution with Cognito.

  1. Create a Cognito user pool, identity pool and Apple/Google account, see: [3], [4]
  2. Call GetCredentialsForIdentity (Follow [5]) to get the auth tokens
  3. If you are using Lambda game backend service, use the auth token to authenticate API gateway calls [6] to Lambda
  4. Lambda will then make calls to GameLift, such as SearchGameSessions, StartMatchmaking, etc.
[1] https://docs.gamesparks.com/api-documentation/request-api/authentication/signinwithappleconnectrequest.html
[2] https://docs.gamesparks.com/api-documentation/request-api/authentication/googleplayconnectrequest.html
[3] https://docs.aws.amazon.com/cognito/latest/developerguide/apple.html
[4] https://docs.aws.amazon.com/cognito/latest/developerguide/google.html
[5] https://docs.aws.amazon.com/cognito/latest/developerguide/authentication-flow.html
[6] https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-integrate-with-cognito.html
回答済み 3年前
0

Hey GeekFox,

Authentication is ideally handled on the client side or the game backend service; GameLift focuses on integration of game servers with cloud hosting solutions (e.g. EC2).

You could checkout GameSparks, which has out-of-the-box solution for Authentication with Apple: https://docs.gamesparks.com/api-documentation/request-api/authentication/signinwithappleconnectrequest.html or Google Play: https://docs.gamesparks.com/api-documentation/request-api/authentication/googleplayconnectrequest.html

回答済み 3年前
0

I’ve managed to solve it. I’m using playfab to store securely user data and from there I handle user creation on cognito and store login data. My game retrieve login data from there and login into cognito to get auth tokens. Everything is secured and handled by lambdas with authorizers so only playfab or my game can access cognito.

回答済み 3年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ