question

brendan-1 avatar image
brendan-1 asked

Is there a limit on Client GetUserData

My application had admin functionality that allows admins to read player data. On application start, the client obtains all players PlayerID and then calls a GetUserData for each PlayerID.

Will this be or become an issue with 1k/10k/50k users?

unity3d
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Made Wang avatar image
Made Wang answered

What do you mean by admin? Do you want to call GetPlayersInSegment on the client side? Anyway, we don't recommend calling Admin API on the client side. You can call on a custom server or Azure Function Cloud Script and return data to the client.

PlayFab has a limit of 100 calls to the API per 2 minutes per client, which won't meet your needs. You can try to implement on a custom server and then return the data to the client.

Also, calling thousands of APIs every time the application starts will inevitably cause a lot of overhead, please consider whether this behavior is necessary.

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.