Statuscake.client
A simple .NET client for communication with the StatusCake website monitoring service API.
Install / Use
/learn @DejanPelzel/Statuscake.clientREADME
StatusCake .NET Api Client
A simple .NET client for communication with the StatusCake website monitoring service API.
How to use:
The StatusCakeClient library is incredibly simple to use. It supports two authentication options. You can either use the constructor to pass the username or password like so:
var statusCakeClient = new StatusCakeClient("MyUsername", "MyAccessKey");
or simply update your appSettings section in the configuration file with the following keys:
<appSettings>
<add key="StatusCake.Client.Username" value="MyUsername"/>
<add key="StatusCake.Client.AccessKey" value="MyAccessKey"/>
</appSettings>
Examples:
Get test list:
var statusCakeClient = new StatusCakeClient();
var tests = await statusCakeClient.GetTestsAsync();
Get test details:
var statusCakeClient = new StatusCakeClient();
var tests = await statusCakeClient.GetTestsAsync();
var testDetails = await statusCakeClient.GetTestDetailsAsync(tests[0].TestID);
Related Skills
tmux
352.0kRemote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
diffs
352.0kUse the diffs tool to produce real, shareable diffs (viewer URL, file artifact, or both) instead of manual edit summaries.
blogwatcher
352.0kMonitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.
prd
Raito Bitcoin ZK client web portal.
