Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jincod/yousign-dotnet
YooSign .NET Client based on https://dev.yousign.com example
https://github.com/jincod/yousign-dotnet
Last synced: about 5 hours ago
JSON representation
YooSign .NET Client based on https://dev.yousign.com example
- Host: GitHub
- URL: https://github.com/jincod/yousign-dotnet
- Owner: jincod
- License: mit
- Created: 2019-07-02T09:36:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T02:01:38.000Z (almost 2 years ago)
- Last Synced: 2024-04-15T02:29:19.259Z (7 months ago)
- Language: C#
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# YouSign .NET Client
## Usage
```csharp
services
.AddHttpClient(client =>
{
client.BaseAddress = new Uri(appSettings.YouSignSettings.Url);
client.DefaultRequestHeaders.Add("Authorization", $"Bearer {appSettings.YouSignSettings.ApiKey}");
});
```