'Upload large files in web api from react application. we are trywant to pass large file to web api from react client project with http client object

File first comes in client API controller from js, then file converted to bytes and created JSON object after that this request we send to web API with the HTTP client. like this var response = await Client.PostAsJsonAsync(URL, request); in web API its saves in the database. My issue is large file is taking too much time when they pass from client API to web AP



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source