SavePage 0.1.0

dotnet add package SavePage --version 0.1.0
NuGet\Install-Package SavePage -Version 0.1.0
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="SavePage" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SavePage --version 0.1.0
#r "nuget: SavePage, 0.1.0"
#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.
// 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 =)

"Buy Me A Coffee"

Installation

NuGet Badge

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 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. 
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
0.1.0 151 4/17/2023