◆ EscapeURL()
string Core.Platform.SDK.BeamableApiRequester.EscapeURL |
( |
string |
url | ) |
|
|
inline |
◆ Request< T >()
Promise< T > Core.Platform.SDK.BeamableApiRequester.Request< T > |
( |
Method |
method, |
|
|
string |
uri, |
|
|
object |
body = null , |
|
|
bool |
includeAuthHeader = true , |
|
|
Func< string, T > |
parser = null , |
|
|
bool |
useCache = false |
|
) |
| |
|
inline |
Make an authorized request to the Beamable API.
- Parameters
-
method | One of the common HTTP methods represented through the Method enum |
uri | A Beamable API relative uri. The uri may contain URL parameters. |
body | The body of the network request. If the type of the body is an object, it will be serialized to JSON. If the type of the body is a string, no serialization will occur. |
includeAuthHeader | When includeAuthHeader is true, the IAccessToken.Token value will be automatically passed in as the Authorization Header for the request. When the includeAuthHeader is false, no Authorization Header will be sent with the network request. |
parser | By default, the network response will be assumed JSON and deserialized as such. However, if a parser is provided, the network response will be given the parser as a string. The parser can convert the string into the expected result type, T |
useCache | When useCache is enabled, the network response will be written to disk and indexed by the uri, method, and includeAuthHeader. If the same request is sent later when the player is offline, the disk value will be read and given as a valid response. |
- Template Parameters
-
T | The type of the network response. The network response will be deserialized into an instance of T. You can override the parsing by passing a custom parser |
- Returns
- A Promise<T> of type T when the network request completes.
Implements Beamable.Common.Api.IBeamableRequester.
◆ WithAccessToken()
Create a new IBeamableRequester that will authenticate all requests using the given TokenResponse argument. WARNING, this method is not supported inside Microservices.
- Parameters
-
tokenResponse | A TokenResponse that will be used to create the AccessToken for the resulting requester. |
- Returns
- A new IBeamableRequester
Implements Beamable.Common.Api.IBeamableRequester.
The documentation for this class was generated from the following file:
- com.beamable/Runtime/Core/Platform/SDK/BeamableApiRequester.cs