Ask a Question

Ask a Question
ANSWERED

How do I implement a currency that increases over time on the server?

I have an implementation design question - how would I go about implementing a currency (or a stat, doesn't matter for this purpose) that generates over time on the server?

ANSWERED

Can I make a direct connection to a Microstorage Mongo Database?

Can I get the connection string to connect directly to the Mongo Database?

ANSWERED

Cloud save vs. Microservice Storage

  1. What's the best way to decide between storages ( cloud save vs Microservice Storage) (ie what data goes where
  2. Are there any tradeoffs in either? If yes , what are they?
  3. Is there a way to read/update Cloud save data from serverside microservice code ?
ANSWERED

Getting a 401 Error on a Microservice

I'm having an issue with a microservice in our app.

ANSWERED

Directly connecting to Mongo DB

Is there a way to connect directly to the Mongo DB Without using Microservice?

ANSWERED

Microservice Requester

To make a request from a microservice to another microservice, I saw that we should use the microservice Requester, but in the method Requester.request, the body is of type object but this is very abstract. I tried making a string json with my parameters but it's not working. Can you give us a proper way/data struture on how to do that?

ANSWERED
ANSWERED

Leaderboard questions- GetAssignedBoard, GetBoard, Leaderboardref

Hi! I have some questions regarding the leaderboard.
1)What's the difference between GetAssignedBoard() and GetBoard() ? Looking at both functions, they seem to do the same thing as they take the same arguments and have the same return type.
2)What is a LeaderboardRef and how do we obtain it? When is it more interesting to use LeaderboardRef instead of string boardId?
3)Is it correct to assume that long? focus = null pertains to a playerId, and that by providing this field, the function will return leaderboard entries around this player?

ANSWERED

JWT Questions

1 - The microservice needs the library to decode the JWT, the way I did the installation was to download the nuget package, extract it as a zip and get the contents of the lib folder, I used the netstandard 2.0 version of all DLLs and put these DLLs in the unity in a plugins folder and referenced them in the login microservice in the Assembly References area. Is this process correct? If not, what is the correct way to do this? And which version should be used, net40 / net45 / net60 ?

ANSWERED

Getting a Realm Name or ID

Is there a way to get the current realm name from within the c# API? My intent is to provide a means for me to quickly see what realm i’m connected to.
I’ll also accept just a realm ID, and I can suss out the name myself.