익명 로그인 매커니즘
익명 로그인 메커니즘은 사용하기 간단합니다. 플레이어 쪽에서 입력할 사항이 전혀 없으므로 최초 사용자 경험에 마찰이 없어서 결과적으로 각 플레이어마다 고유한 계정을 PlayFab에 만듭니다. 이것은 가장 일반적인 로그인 메커니즘입니다.
다음은 해당 로그인 메커니즘에 포함되는 내용입니다.
Custom ID 연동
HTTP METHOD | URL |
---|---|
POST | https://titleId.playfabapi.com/Client/LoginWithCustomID |
Name | Required | Type | Description |
---|---|---|---|
None | True | string | This API requires no authentication headers (usually provides one to other calls). |
Name | Required | Type | Description |
---|---|---|---|
TitleId | True | string | Unique identifier for the title, found in the Settings > Game Properties section of the PlayFab developer site when a title has been selected. |
CreateAccount | boolean | Automatically create a PlayFab account if one is not currently linked to this ID. | |
CustomId | string | Custom unique identifier for the user, generated by the title. | |
CustomTags | object | The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). | |
EncryptedRequest | string | Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). | |
InfoRequestParameters | GetPlayerCombinedInfoRequestParams | Flags for which pieces of info to return for the user. | |
PlayerSecret | string | Player secret that is used to verify API request signatures (Enterprise Only). |
Name | Type | Description |
---|---|---|
200 OK | LoginResult | |
400 Bad Request | ApiErrorWrapper | This is the outer wrapper for all responses with errors |