Questions tagged [playfab]

68 questions
4
votes
1 answer

Google Signin for Unity (Windows standalone build) - invalidGoogleToken when used with Playfab

Hopefully someone can point me in the right direction here, I'm attempting to log into Playfab using a google auth code retrieved from an async call in Unity, the flow is as follows: Click my login to google button in Unity. Unity begins to listen…
3
votes
1 answer

PlayFab vs Photon vs other solutions

I'm just getting my feet wet with multiplayer capabilities in Unity, and would like to have matchmaking and for now, just 1 v 1 matches. What I'm a bit confused about, is some people seem to be indicating they use both PlayFab and Photon together,…
Ginzorf
  • 769
  • 11
  • 19
3
votes
0 answers

Unity - What to do when PlayerPrefs data cleared when browser history is cleared?

Currently, I have a lot of data stored using PlayerPrefs, such as total scores, important indices, and more. How can I best save PlayerPrefs data in a WebGL game in the event that data gets cleared when the players clear their browser history?
2
votes
0 answers

PlayFab NuGet package Compiles/link in Debug mode but not in Release

I have a custom-made game engine and want to integrate PlayFab into it. I made Sandbox project to try it out. I read the documentation and it instructs the following: Download com.playfab.xplatcppsdk.vXXX (Success) Make sure it builds in Release…
2
votes
1 answer

How recreate sessions in Kusto without session ID but with event associated to login

I got a problem about recreating sessions in Kusto. I got an event named client_session_start, which timetamp gives me info about when a player starts a new session. The problem is that I don't have an event for the session end, so I should label…
ianux22
  • 405
  • 4
  • 16
2
votes
1 answer

PlayFab integration with Azure AD B2C as OpenID Connect

I am trying to integrate Azure AD B2C as OpenID Connect into PlayFab to support AD user to login into PlayFab, below are the steps which I have tried- Azure AD B2C Registered Client app under B2C Create SignUp and SignIn User Flow Added Google and…
deen
  • 2,185
  • 7
  • 29
  • 53
2
votes
0 answers

How do I send a push notification for a friend request for multi-Player game in Unity using Playfab+photon

So here I am trying to convert my single player game into multiplayer game. I am able to work the part where the user can login to the game using Playfab via Username. I am able to create a friend screen and in that I can, say add PlayerB as his…
2
votes
0 answers

How I can link Playfab with an already existing Azure active directory B2C implementation of player accounts that I have created

I have successfully gotten Playfab to work with my Unity app - I can create accounts and log in nicely. I am wondering how I can link Playfab with an already existing Azure active directory B2C implementation of player accounts that I have created?…
cyo
  • 69
  • 1
  • 14
1
vote
0 answers

How do I create a playfab leaderboard and send player stats to it using to their playfab ID?

I am not sure how to create a Playfab leaderboard and add scores to a user, based on their Playfab ID retrieved from the details they've entered in my 2 player login system. Both players enter their details (email, password) separately. My 2 player…
1
vote
0 answers

How can I create a playfab leaderboard for a local 2 player game using login details?

I want to get the 2 players playing my pool game to login separately and play the main game. Is there a way I can use login details to store stats in leaderboard formats in playfab? I have set up playfab and have got a functioning login page in…
1
vote
1 answer

Conflicting libraries System.Security.Permissions and mscorlib when updating from Unity 2021.3.13f to 2021.3.14f

I recently updated Unity from 2021.3.13f to 2021.3.14f. After update this error came up: Library\PackageCache\com.unity.services.core@1.6.0\Editor\Core\Configuration\ProjectConfigurationBuildInjectorWithPlayerProcessor.cs(43,50): error CS0433: The…
Tomas Toth
  • 13
  • 2
1
vote
1 answer

Create and save just the instance of a script

I have the following problem: I am trying to load data from a playfab server and store it on a script in Unity. if (_item.ItemClass == "building") { string _id = _item.ItemId; Debug.Log("loaded building: id: " +…
Nietzsche
  • 35
  • 1
  • 4
1
vote
0 answers

SignalR client receives Information: Connection disconnected from hub

I created a signalR JavaScript client that needs to communicate with a hosted signalR server (from Playfab). I successfully created the signalR client and connected it with the server, but the problem that I'm facing is that the connection doesn't…
1
vote
0 answers

Playfab DisplayName is returning null

I'm trying to log the user in and get the username. When I try to get username on LoginSuccess() via "InfoResultPayload.PlayerProfile.DisplayName" it's returning null. Here's are the login functions: public void LoginClick() { var login…
AK200122
  • 11
  • 1
1
vote
2 answers

Error on pass two values in return Unity C# CS8210: A tuple may not contain a value of type 'void'

I'm trying to pass two values in a return but I get an error. By calling it I would be able to update the values that are in the playfab. Does anyone have an idea how to solve this? Thanks in advance. Every help is welcome. Any suggestion that leads…
Davi
  • 67
  • 1
  • 14
1
2 3 4 5