PlayFab Integration
Introduction
In this document we help you integrate PlayFab with Photon.
With this approach, both systems will get used in parallel to their full potential.
Billing is separate for each service.
Find PlayFab's Photon add-on here under the "Add-ons" - "Multiplayer" section of your title.
PlayFab's Photon add-on allows you to set up one or two Photon applications (one Photon Realtime and/or one Photon Chat application).
Read the instructions for the setup from PlayFab side in this guide.
Read on for setup instructions for Photon.
Custom Authentication
Dashboard Configuration
Here are the steps to setup custom authentication with PlayFab:
- Go to Photon dashbaord.
- Choose an application or create a new one.
- Click "Manage".
- Under "Authentication" section, click "Custom Server".
- [Required] Set Authentication URL to
https://{PlayFabTitleId}.playfabapi.com/photon/authenticate
.
Make sure to replace{PlayFabTitleId}
placeholder with your actual PlayFab TitleId.
Do not keep the open ({
) and closing (}
) braces or curly brackets characters in the URL.
Example: if your PlayFab TitleId isAB12
:https://AB12.playfabapi.com/photon/authenticate
. - Save by hitting "Create".
- [Recommended] Untick "Allow anonymous clients to connect, independently of configured providers".
Client Code
Client is expected to send a pair of key/values as credentials:
- PlayFab UserId of the logged in user.
- Photon token (retrieved using GetPhotonAuthenticationToken Client API method).