ApiCallManager.NetFramework 4.8.0.4

dotnet add package ApiCallManager.NetFramework --version 4.8.0.4
NuGet\Install-Package ApiCallManager.NetFramework -Version 4.8.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ApiCallManager.NetFramework" Version="4.8.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ApiCallManager.NetFramework --version 4.8.0.4
#r "nuget: ApiCallManager.NetFramework, 4.8.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ApiCallManager.NetFramework as a Cake Addin
#addin nuget:?package=ApiCallManager.NetFramework&version=4.8.0.4

// Install ApiCallManager.NetFramework as a Cake Tool
#tool nuget:?package=ApiCallManager.NetFramework&version=4.8.0.4

ApiCallManager

REST API call manager

How to use ApiManager in ASP.NET Core Web API Projects

in asp.net core web api project you should add ApiManager in Service Container:

builder.Services.AddHttpClient();
builder.Services.AddScoped<ApiCallManager.IApiManager, ApiCallManager.ApiManager>();

Note that if you don't want to use HttpClientFactory, you can remove builder.Services.AddHttpClient(); line

Then Inject ApiManager service where you want and use it. In below example code ApiManager service injected into TestController:

[ApiController]
[Route("[controller]/[action]")]
public class TestController : ControllerBase
{
    private IApiManager _apiManager;
    private readonly ILogger<TestController> _logger;

    public TestController(ILogger<TestController> logger, IApiManager apiManager)
    {
        _apiManager = apiManager;
        _logger = logger;
    }

    [HttpGet]
    public async Task<ActionResult> GetUsers()
    {
        var result = await _apiManager.GetAsync<List<User>>("https://gorest.co.in/public/v2/users");

        if (result.IsSuccess)
        {
            return Ok(result.Result);
        }
        else
        {
            return Problem(
                    type: result?.Problem?.Type,
                    statusCode: result?.Problem?.Status,
                    title: result?.Problem?.Title,
                    detail: result?.Problem?.Detail
                );
        }
    }
}

How to use ApiManager in Console or Windows Application Projects

in console applications or windows applications you can create a static instance of ApiManager inside a Helper class or in program global scope.

public class ClassHelper
{
    public static IApiManager apiManager;

    public static void ShowApiCallError(ValidationProblemDetails? error)
    {
        if (error != null)
        {
            MessageBox.Show($"Title: {error?.Title ?? "-"}\n\rDetails: {error?.Detail ?? "-"}", "API Call Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
        else
        {
            MessageBox.Show($"An unknown error has occurred!", "API Call Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
    }
}

Then in program startup or main form loading initial defined static ApiManager object.

private void Form1_Load(object sender, EventArgs e)
{
    ClassHelper.apiManager = new ApiManager();
}

If you use Authorization in application, after user login to application and Access Token and Refresh Token recieved from Authorization server, Set Token in ApiManger:

private async void button_login_Click(object sender, EventArgs e)
{
    string username = textBox_username.Text;
    string password = textBox_password.Text;

    var res = await LoginAsync(username, password);
    if (res != null)
    {
        ClassHelper.apiManager.SetTokens(res.AccessToken, res.RefreshToken, "https://gorest.co.in/public/v2/refreshtoken", true);
    }
}

Congratulation, you now call any web api using ApiManger easily.

public async Task<List<User>?> GetUsersAsync()
{
    var result = await ClassHelper.apiManager.GetAsync<List<User>>("https://gorest.co.in/public/v2/users");

    if (result.IsSuccess)
    {
        return result.Result;
    }
    else
    {
        ClassHelper.ShowApiCallError(result.Problem);
        return null;
    }
}

How to Send MultiPart form-data

int a = 25;
string b = "Text string";

MultipartFormDataContent content = new MultipartFormDataContent();
content.Add(new StringContent("IntParam"), a.ToString());
content.Add(new StringContent("StringParam"), b);

FileStream fs = new FileStream("C://TestFolder/myfile.png", FileMode.Open);
content.Add(new StreamContent(fs), "FileParam", "myfile.png");

var resutl = await ClassHelper.apiManager.PutAsync<MultipartFormDataContent, string>("https://myserver/testapi", content);
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.8.0.4 105 2/5/2024
4.8.0.3 181 12/13/2023
4.8.0.2 83 12/13/2023
4.8.0.1 105 12/12/2023
4.8.0 114 12/10/2023

Dot Net 4.8 supported.