feat: add ability to use JWT to HttpClient

This commit is contained in:
cuqmbr 2022-07-19 12:37:08 +03:00
parent 159f97f190
commit 26eb87ccb7

View File

@ -6,6 +6,8 @@ using UnityEngine.Networking;
public static class HttpClient public static class HttpClient
{ {
private static string _jwt = "";
public static async Task<T> Get<T>(string endpoint) public static async Task<T> Get<T>(string endpoint)
{ {
var getRequest = CreateRequest(endpoint, RequestType.GET); var getRequest = CreateRequest(endpoint, RequestType.GET);
@ -39,6 +41,11 @@ public static class HttpClient
return JsonConvert.DeserializeObject<T>(postRequest.downloadHandler.text); return JsonConvert.DeserializeObject<T>(postRequest.downloadHandler.text);
} }
public static void SetJwt(string jwt)
{
_jwt = jwt;
}
private static UnityWebRequest CreateRequest(string path, RequestType type, object data = null) private static UnityWebRequest CreateRequest(string path, RequestType type, object data = null)
{ {
var request = new UnityWebRequest(path, type.ToString()); var request = new UnityWebRequest(path, type.ToString());
@ -51,6 +58,7 @@ public static class HttpClient
request.downloadHandler = new DownloadHandlerBuffer(); request.downloadHandler = new DownloadHandlerBuffer();
request.SetRequestHeader("Content-Type", "application/json"); request.SetRequestHeader("Content-Type", "application/json");
request.SetRequestHeader("Authorization", $"Bearer {_jwt}");
request.certificateHandler = new CertificateWhore(); request.certificateHandler = new CertificateWhore();