Asp.net – C# HttpClient timeout in web application
The code below works great in a console application. When it runs on IIS in a web application it times out on the client.GetAync(URL) line. Any ideas? static async Task<byte[]> GetLogo(string URL, string AccessToken) { byte[] imageData = null; using…