SavePage 0.1.0
dotnet add package SavePage --version 0.1.0
NuGet\Install-Package SavePage -Version 0.1.0
<PackageReference Include="SavePage" Version="0.1.0" />
paket add SavePage --version 0.1.0
#r "nuget: SavePage, 0.1.0"
// Install SavePage as a Cake Addin #addin nuget:?package=SavePage&version=0.1.0 // Install SavePage as a Cake Tool #tool nuget:?package=SavePage&version=0.1.0
SavePage
SavePage is a RESTful APIs client in C# applications for screenshot any website using SavePage.io
If you like this project please give a star and a cup of coffee =)
Installation
To install SavePage, you can use the NuGet package manager in Visual Studio. Simply search for "SavePage" and click "Install".
Alternatively, you can install SavePage using the command line:
Install-Package SavePage
Getting Started
Firstly obtain valid SavePage API key.
Without using dependency injection:
var apiClient = new SavePageClient(new SavePageOptions()
{
ApiKey = Environment.GetEnvironmentVariable("MY_API_KEY")
});
Using dependency injection:
In your secrets.json or other settings.json
"SavePageOptions": {
//"ApiKey": "Your api key goes here",
//"ApiBaseAddress": "Your api base address goes here"
},
Program.cs
serviceCollection.AddSavePageClient();
or using Environment Variable
serviceCollection.AddSavePageClient(settings => { settings.ApiKey = Environment.GetEnvironmentVariable("MY_API_KEY"); });
NOTE: do NOT put your API key directly to your source code.
After injecting your service you will be able to get it from service provider
var apiClient = serviceProvider.GetRequiredService<SavePageClient>();
or injecting in the constructor of your class
public class MyService
{
private readonly SavePageClient _apiClient;
public MyService(SavePageClient apiClient)
{
_apiClient = apiClient;
}
}
Logging and Exception handling
For diagnostic there are DelegatingHandler
-s such as LoggingHandler
and ExceptionHandler
. You can always extend them
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
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 |
---|---|---|
0.1.0 | 188 | 4/17/2023 |