Skip to content

Commit 4858cdd

Browse files
committed
Updated readme
1 parent 09c59c8 commit 4858cdd

File tree

3 files changed

+18
-34
lines changed

3 files changed

+18
-34
lines changed

2Captcha.Sandbox/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ static async Task Foo()
3030
var recaptchaInvisible = await twoCaptcha.SolveReCaptchaV2("GOOGLE_SITE_KEY", "https://example.com", true);
3131

3232
// Solve ReCaptchaV3
33-
var recaptcha3 = await twoCaptcha.SolveReCaptchaV3("GOOGLE_SITE_KEY", "https://example.com", "verify", 0.4);
33+
var recaptcha3 = await twoCaptcha.SolveReCaptchaV3("GOOGLE_SITE_KEY", "https://example.com", "ACTION", 0.4);
3434

3535
// Solve ClickCaptcha
3636
var click1 = await twoCaptcha.SolveClickCaptcha(new FileStream("captcha.png", FileMode.Open), "Click on ghosts");

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Kamil Monicz
3+
Copyright (c) 2019 Kamil Monicz
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+16-32
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
1-
# ![2Captcha logo](https://i.imgur.com/sCDANG3.png)
1+
# ![Zaczero/2Captcha logo](https://i.imgur.com/sCDANG3.png)
22

3-
![](https://img.shields.io/github/release/Zaczero/2Captcha.svg)
4-
![](https://img.shields.io/nuget/v/2CaptchaAPI.svg)
5-
![](https://img.shields.io/github/license/Zaczero/2Captcha.svg)
3+
![github version](https://img.shields.io/github/release/Zaczero/2Captcha.svg)
4+
![nuget version](https://img.shields.io/nuget/v/2CaptchaAPI.svg)
5+
![license type](https://img.shields.io/github/license/Zaczero/2Captcha.svg)
66

7-
Simple HTTP API wrapper for https://2captcha.com/
7+
Simple HTTP API wrapper for [2captcha.com](https://2captcha.com/)
88
An online captcha solving and image recognition service.
99

10-
## 🔗 Download
11-
* Latest release: https://github.com/Zaczero/2Captcha/releases/latest
10+
### 🔗 Download
1211

13-
## ☕ Support me
14-
If you find this project useful and you are new to 2captcha please consider registering from my [referrral link](http://2captcha.com/?from=6591885).
12+
* Latest release - [github.com/Zaczero/2Captcha/releases/latest](https://github.com/Zaczero/2Captcha/releases/latest)
1513

16-
## 🏁 Sample code
14+
### 🏁 Sample code
1715

1816
```cs
1917
var twoCaptcha = new TwoCaptcha(" ## YOUR API KEY ## ");
@@ -33,7 +31,7 @@ var recaptcha = await twoCaptcha.SolveReCaptchaV2("GOOGLE_SITE_KEY", "https://ex
3331
var recaptchaInvisible = await twoCaptcha.SolveReCaptchaV2("GOOGLE_SITE_KEY", "https://example.com", true);
3432

3533
// Solve ReCaptchaV3
36-
var recaptcha3 = await twoCaptcha.SolveReCaptchaV3("GOOGLE_SITE_KEY", "https://example.com", "verify", 0.4);
34+
var recaptcha3 = await twoCaptcha.SolveReCaptchaV3("GOOGLE_SITE_KEY", "https://example.com", "ACTION", 0.4);
3735

3836
// Solve ClickCaptcha
3937
var click1 = await twoCaptcha.SolveClickCaptcha(new FileStream("captcha.png", FileMode.Open), "Click on ghosts");
@@ -50,7 +48,7 @@ var funNoJavaScript = await twoCaptcha.SolveFunCaptcha("FUN_CAPTCHA_PUBLIC_KEY",
5048
var key = await twoCaptcha.SolveKeyCaptcha("USER_ID", "SESSION_ID", "WEB_SIGN_1", "WEB_SIGN_2", "https://example.com");
5149
```
5250

53-
### And here is the result structure *(same for all methods)*:
51+
#### And here is the result structure *(same for all methods)*:
5452

5553
```cs
5654
public struct TwoCaptchaResult
@@ -66,26 +64,12 @@ public struct TwoCaptchaResult
6664
}
6765
```
6866

69-
## 📎 License
67+
### ☕ Support me
7068

71-
MIT License
69+
* Bitcoin: `35n1y9iHePKsVTobs4FJEkbfnBg2NtVbJW`
70+
* Ethereum: `0xc69C7FC9Ce691c95f38798506EfdBB8d14005B67`
7271

73-
Copyright (c) 2018 Kamil Monicz
72+
### 📃 License
7473

75-
Permission is hereby granted, free of charge, to any person obtaining a copy
76-
of this software and associated documentation files (the "Software"), to deal
77-
in the Software without restriction, including without limitation the rights
78-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
79-
copies of the Software, and to permit persons to whom the Software is
80-
furnished to do so, subject to the following conditions:
81-
82-
The above copyright notice and this permission notice shall be included in all
83-
copies or substantial portions of the Software.
84-
85-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
86-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
87-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
88-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
89-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
90-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
91-
SOFTWARE.
74+
* [Zaczero/2Captcha](https://github.com/Zaczero/2Captcha/blob/master/LICENSE)
75+
* [JamesNK/Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md)

0 commit comments

Comments
 (0)