TriggerMe.Request
1.0.1-alpha
dotnet add package TriggerMe.Request --version 1.0.1-alpha
NuGet\Install-Package TriggerMe.Request -Version 1.0.1-alpha
<PackageReference Include="TriggerMe.Request" Version="1.0.1-alpha" />
<PackageVersion Include="TriggerMe.Request" Version="1.0.1-alpha" />
<PackageReference Include="TriggerMe.Request" />
paket add TriggerMe.Request --version 1.0.1-alpha
#r "nuget: TriggerMe.Request, 1.0.1-alpha"
#:package TriggerMe.Request@1.0.1-alpha
#addin nuget:?package=TriggerMe.Request&version=1.0.1-alpha&prerelease
#tool nuget:?package=TriggerMe.Request&version=1.0.1-alpha&prerelease
TriggerMe C# Request Library
C# Library to make requests to the TriggerMe Forwarder/Router. TriggerMe provides an API proxy to Test, Forward and Route requests.
TriggerMe provides a serverless proxy to help diagnose API request issues, manage retries and mock responses.
Usage
To forward a HTTP Post request:
var content = new { message = "Hello World" };
var strContent = new StringContent(JsonConvert.SerializeObject(content), Encoding.UTF8, "application/json");
Options.ApiKey = "[[Your API Key]]";
var client = new ForwardRequestClient();
var response = await client.PostAsync("[[TargetUrl]]", strContent);
Console.WriteLine(response.RequestId);
You can check the status of the request using the RequestId
returned from the response object.
var requestStatus = new ForwardRequestStatus();
var update = await requestStatus.CheckRequestAsync(response.RequestId);
Console.WriteLine(update.Result);
You can download the Request or Response body by accessing the BlobUri
property of either RequestLog.BlobUri
or RequestLog.RetryRecords[].BlobUri
.
Note: These Blob URIs are timed so should not be cached
// Downloading the request blob
var req = await update.Request.DownloadBlobAsStringAsync();
Console.WriteLine(req);
// Downloading the final response blob
var response = await update.RetryRecords.Last().DownloadBlobAsStringAsync();
Console.WriteLine(response);
Building
Prerequisites
- Microsoft .NET Core 2.2 SDK
To build the solution and the tests
dotnet build
To build the NuGet package
cd src/TriggerMe/Request
dotnet pack -c Release
License
Copyright © 2018 TriggerMe (Stellar Tech Limited)
This program is free software: you can redistribute it and/or modify it under the terms of the Apache 2.0 license.
Legal
By submitting a Pull Request, you disavow any rights or claims to any changes submitted to the TriggerMe project and assign the copyright of those changes to Stellar Tech Limited.
If you cannot or do not want to reassign those rights (your employment contract for your employer may not allow this), you should not submit a PR. Open an issue and someone else can do the work.
This is a legal way of saying "If you submit a PR to us, that code becomes ours". 99.9% of the time that's what you intend anyways; we hope it doesn't scare you away from contributing.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 11.0.2)
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 |
---|---|---|
1.0.1-alpha | 613 | 12/16/2018 |
1.0.0-alpha | 1,140 | 12/15/2018 |