Hi!
With this virus stuff I want to port a kid's camp activities to a digital WebGL game.
I'm going to create the users manually, which are quite a few. So, I want to know if there is any way to create a lot of users from a list with a .csv or a cloud script or something.
My work around will be to create an auto user generator on Unity but prefer the server side work for this :)
Thank you!!
Answer by Citrus Yan · Mar 23, 2020 at 07:15 AM
Currently, there are no APIs analogous to RegisterPlayFabUser/ LoginWith_xxx (used for account creation) in the server API set except the LoginWithServerCustomId, LoginWithXbox and LoginWithXboxId API, however, from my perspective, they may not fit your current use case. Therefore, you'll need to do it from the client side using a user generator, please also note that you should also control the API request rate – this prevents your title from being throttled.
Yes, not to create all at once from the server was my biggest concern, I will do it in small chunks of users.
Thank you so much!