dkackman / DynamicRestProxy

A Dynamic Language Runtime (DLR) http proxy

Home Page:https://dkackman.github.io/DynamicRestProxy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dynamic Rest

NuGet

A conventions based rest client using the .NET Dynamic Language Runtime.

The documentation has further detail and examples, as does this article on codeproject.

This is a set of classes that wrap a concrete implementation of http client communication with a DynamicObject. The wrapper translates dynamic method invocations and endpoint paths into REST requests.

All requests are asynynchronous and return Task objects.

The intent is to make it easier to access REST API's from C# without needing to create strongly typed API wrappers and numerous static POCO types for basic DTO responses.

So a GET statement can be as simple as:

dynamic google = new DynamicRestClient("https://www.googleapis.com/");
dynamic bucket = await google.storage.v1.b("uspto-pair").get();
Console.WriteLine(bucket.location);

Or if you insist on static DTO types, a type argument can be supplied (deserialization uses Json.Net so all its rules and patterns apply):

dynamic google = new DynamicRestClient("https://www.googleapis.com/");
Bucket bucket = await google.storage.v1.b("uspto-pair").get(typeof(Bucket));
Console.WriteLine(bucket.location);

Supports the GET, POST, PUT, PATCH and DELETE verbs.

Tested on dotnetcore on Linux.

If you try to run the unit tests take a close look at the CredentialStore class in the unit test project. It's pretty straighforward and you can use it to supply your own api keys while keeping them out of the code.

About

A Dynamic Language Runtime (DLR) http proxy

https://dkackman.github.io/DynamicRestProxy

License:Apache License 2.0


Languages

Language:C# 63.9%Language:HTML 28.1%Language:PowerShell 8.0%Language:Batchfile 0.0%