UserIDs and Friends
UserIDs
In Photon, a player is identified using a unique UserID.
This UserID is useful inside and outside rooms.
Photon clients with the same UserID can be connected to the same server but you can't join the same Photon room from two separate clients using the same UserID.
Each actor inside the room should have a unique UserID.
In old C# client SDKs, this was enabled using RoomOptions.CheckUserOnJoin
.
Unique UserIDs
Generally, UserIDs are not intended to be displayed. Unlike usernames, displaynames or nicknames. A UserID does not have to be human-readable or very human-friendly. So you could, for instance, use a GUID as a UserID.
The advantages of keeping a unique UserID per player:
- You preserve your data between game sessions and across multiple devices. You can rejoin rooms and resume playing where you stopped.
- You can become known to all players you meet and easily identifiable by everyone. You can play with your friends, send them invitations and challenges, make online parties, form teams and guilds, etc. You can add user profiles (e.g. experience, statistics, achievements, levels, etc.) and make games more challenging (also using tournaments and leaderboards).
- You could make use of another service to bind Photon UserID to an external unique identifier. For instance, Photon UserID could be set to Facebook ID, Google ID, Steam ID, PlayFab ID, etc.
- You can prohibit malicious users from connecting to your applications by keeping a blacklist of their UserIDs and making use of custom authentication.
Setting UserIDs
Once authenticated, a Photon client will keep the same UserID until disconnected. The UserID for a client can be set in three ways:
- Client sends its UserID before connecting by setting
AuthenticationValues.UserId
. This option is useful when you do not use custom authentication and want to set a UserID. - An external authentication provider returns the UserID on successful authentication. See custom authentication. It will override any value sent by the client.
- Photon Server will assign GUIDs as IDs for users that did not get UserIDs using 1 or 2. So even anonymous users will have UserIDs.
Publish UserIDs
Players can share their UserIDs with each other inside rooms.
In C# SDKs, to enable this and make the UserID visible to everyone, set RoomOptions.PublishUserId
to true
, when you create a room.
The server will then broadcast this information on each new join and you can access each player's UserID using Player.UserId
.
Friends
- Friends' UserIDs are case sensitive. Example: "mybestfriend" and "MyBestFriend" are two different UserIDs for two different friends.
- Only friends connected to the same AppID, the same Photon Cloud region and play the same Photon AppVersion can find each other no matter what device or platform they're using.
- FindFriends works only when connected to the Master Server, it does not work when the client is joined to a room.
You can find out if your friends who are playing the same game are online and if so, which room they are joined to. Like users, friends are also identified using their UserID. So the FriendID is the same thing as the UserID and in order to find some friends you need to know their UserIDs first. Then you can send the list of UserIDs to Photon Servers using:
using UnityEngine;
public class FindFriendsExample : MonoBehaviour
{
public bool FindFriends(string[] friendsUserIds)
{
return PhotonNetwork.FindFriends(friendsUserIds);
}
private void OnUpdatedFriendList()
{
for(int i=0; i < PhotonNetwork.Friends.Count; i++)
{
FriendInfo friend = PhotonNetwork.Friends[i];
Debug.LogFormat("{0}", friend);
}
}
}
Photon does not persist friends lists. You may need an external service for that.
Since Photon does not keep track of your userbase, any non existing user in your game will just be considered offline. A friend is considered online only when he/she is connected to Photon at the time of making the FindFriends query. A room name will be returned per user if the latter is online and joined to the room with the same name.
If multiple clients with the same UserId are joined to multiple separate rooms in the same Cluster / VirtualApp, FindFriends should return the latest joined one.