Configure the BACKND SDK Inspector
On the BACKND Inspector window, you can set various values to use BACKND SDK.
Below is a detailed description of each value.
Server Settings
Variable | Description |
---|---|
Client App ID | Unique game ID that identifies the game |
Signature Key | Key required to encrypt data when exchanging game data with the server |
Function Auth Key | Key for authentication when using BACKND Function |
Package Name | Unity Project packageName. |
Is All Platform | This setting value determines whether an OS other than Android or iOS devices is allowed. If this value is not checked, an error is returned from the server when connecting from an OS other than Android or iOS. |
Send Log Report | A value that determines whether additional logs will be stored on the server when a request is sent to the server. If this value is checked, an additional log separate from the existing one is left when sending a request. The new log is used to track errors later or to improve BACKND. Checking this option will not cause much difference in response speed, but the response speed may become slightly slower if checked. |
Rate Count Active | Records how many times BACKND methods were called based on each category while the client is running. This can be identified through Backend.RateCounter.GetRateCount(). |
Time Out Sec | Determines the time to process as a timeout error when a request is sent to the server and there is no response within a set time(seconds).(Default: 100 seconds) |
Error Handling
Settings value | Description |
---|---|
Auto Refresh Token | Whether tokens will be automatically reissued upon expiry Relevant error statusCode : 401 errorCode : BadUnauthorizedException |
Retry When Client Request Fail Error | Whether requests will be retried up to three times upon request failure due to network instability Relevant error statusCode : 400 errorCode : HttpRequestException |
Retry When Server Error | Whether requests will be retried up to three times upon request failure due to server overload Relevant error statusCode : 500 errorCode : InternalServerError statusCode : 502 errorCode : BadGateway |
Retry When Bad Signature Error | Whether requests will be retried up to three times upon the occurrence of a bad signature error Relevant error statusCode : 401 errorCode : BadUnauthorizedException |
Device Id
Variable | Description |
---|---|
Init Fail When Device Id Unknown | Whether the initialization will be handled as a failure when there is no DeviceId |