GimmeProxy 1.0.4

dotnet add package GimmeProxy --version 1.0.4                
NuGet\Install-Package GimmeProxy -Version 1.0.4                
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="GimmeProxy" Version="1.0.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GimmeProxy --version 1.0.4                
#r "nuget: GimmeProxy, 1.0.4"                
#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 GimmeProxy as a Cake Addin
#addin nuget:?package=GimmeProxy&version=1.0.4

// Install GimmeProxy as a Cake Tool
#tool nuget:?package=GimmeProxy&version=1.0.4                

GimmeProxy

GimmeProxy constantly crawls the internet for working proxies, so you don't have to.

This is a C# wrapper around the GimmeProxy API.

Getting started

Install GimmeProxy from NuGet:

Install-Package GimmeProxy

Random proxy getter methods are provided in a simple static class called GimmeProxyClient. Use the various GetRandomProxyAsync overloads to retrieve a random proxy using the GimmeProxy API.

using GimmeProxy;

public class Program
{
  static async Task MainAsync(string[] args)
  {
    // Get a random proxy with no filtering.
    var randomProxy = await GimmeProxyClient.GetRandomProxyAsync();

    // Returns only proxies that support GET requests, HTTPS and were checked in last 3600 seconds.
    var requestOptions = new GimmeProxyRequest
    {
      SupportsPost = true,
      SupportsHttps = true,
      CheckedSecondsAgo = 3600,
    };

    // https://gimmeproxy.com/api/getProxy?post=true&supportsHttps=true&maxCheckPeriod=3600
    var url = request.ToString();
    
    // You can also sign-up for an API key for commercial use.
    requestOptions.ApiKey = "xxxxxxx";
    
    var anotherProxy = await GimmeProxyClient.GetRandomProxyAsync(requestOptions);
  }
}

The wrapper is fully documented. If you need more information, please refer to the GimmeProxy API page. To use this API for commercial use you need an API Key from GimmeProxy.

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 is compatible.  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. 
.NET Framework net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 is compatible. 
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.4 124 9/9/2024
1.0.3 105 9/9/2024
1.0.2 483 11/15/2021
1.0.1 350 11/1/2021

- Fix list of websites that can range outside of the available enum values.