GimmeProxy 1.0.4
dotnet add package GimmeProxy --version 1.0.4
NuGet\Install-Package GimmeProxy -Version 1.0.4
<PackageReference Include="GimmeProxy" Version="1.0.4" />
paket add GimmeProxy --version 1.0.4
#r "nuget: GimmeProxy, 1.0.4"
// 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 | 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 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. |
-
.NETFramework 4.7
- Newtonsoft.Json (>= 13.0.3)
-
.NETFramework 4.7.1
- Newtonsoft.Json (>= 13.0.3)
-
.NETFramework 4.7.2
- Newtonsoft.Json (>= 13.0.3)
-
.NETFramework 4.8
- Newtonsoft.Json (>= 13.0.3)
-
.NETFramework 4.8.1
- Newtonsoft.Json (>= 13.0.3)
-
net6.0
- Newtonsoft.Json (>= 13.0.3)
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- Fix list of websites that can range outside of the available enum values.