using System.Net.Http; using System.Text.Json; using System.Threading; using System.Threading.Tasks; namespace Wabbajack.Networking.Http; public static class Extensions { public static HttpRequestMessage UseChromeUserAgent(this HttpRequestMessage msg) { msg.Headers.UserAgent.Clear(); msg.Headers.Add("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36"); return msg; } public static async Task GetJsonFromSendAsync(this HttpClient client, HttpRequestMessage msg, JsonSerializerOptions opts, CancellationToken? token = null) { token ??= CancellationToken.None; using var result = await client.SendAsync(msg, token.Value); if (!result.IsSuccessStatusCode) { throw new HttpException(result); } return (await JsonSerializer.DeserializeAsync(await result.Content.ReadAsStreamAsync(token.Value)))!; } }