TriggerMe.Request 1.0.1-alpha

This is a prerelease version of TriggerMe.Request.
dotnet add package TriggerMe.Request --version 1.0.1-alpha
                    
NuGet\Install-Package TriggerMe.Request -Version 1.0.1-alpha
                    
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="TriggerMe.Request" Version="1.0.1-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TriggerMe.Request" Version="1.0.1-alpha" />
                    
Directory.Packages.props
<PackageReference Include="TriggerMe.Request" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TriggerMe.Request --version 1.0.1-alpha
                    
#r "nuget: TriggerMe.Request, 1.0.1-alpha"
                    
#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.
#:package TriggerMe.Request@1.0.1-alpha
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TriggerMe.Request&version=1.0.1-alpha&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=TriggerMe.Request&version=1.0.1-alpha&prerelease
                    
Install as a Cake Tool

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.

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 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. 
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
1.0.1-alpha 613 12/16/2018
1.0.0-alpha 1,140 12/15/2018