Skip to content

Commit c9751cb

Browse files
Merge pull request #2 from 2captcha/RC-2648
RC-2648 Add info about proxy
2 parents 6434975 + 26cad8a commit c9751cb

File tree

1 file changed

+25
-3
lines changed

1 file changed

+25
-3
lines changed

README.md

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<b>[English](README.md)</b> (recommended) | [中国语文科](README.zh.md) | [Русский](README.ru.md)
22

33

4-
# JavaScript Module for 2Captcha API
4+
# JavaScript captcha solver module for 2Captcha API
55

66
## Description
7-
A wrapper around the [2captcha](https://2captcha.com/) API. This wrapper support reCAPTCHA V2, reCAPTCHA V3, hCaptcha, Arkose Labs FunCaptcha, image captcha, Coordinates (Click Captcha), Geetest, Geetest V4, Yandex Smart Captcha, Lemin captcha, Amazon WAF, Cloudflare Turnstile, Capy Puzzle, DataDome CAPTCHA, CyberSiARA, MTCaptcha, Friendly Captcha.
7+
A wrapper around the [2captcha](https://2captcha.com/) API. This wrapper supports any captcha bypass: reCAPTCHA V2, reCAPTCHA V3, hCaptcha, Arkose Labs FunCaptcha, image captcha, Coordinates (Click Captcha), Geetest, Geetest V4, Yandex Smart Captcha, Lemin captcha, Amazon WAF, Cloudflare Turnstile, Capy Puzzle, DataDome CAPTCHA, CyberSiARA, MTCaptcha, Friendly Captcha.
88

99
Also added support for the `bounding_box` method. The Bounding Box Method allows you to mark data on the image. This method can be used to mark up datasets or highlight any objects in an image according to the given instructions. Read more about using *Bounding Box Method* on [documentation](https://2captcha.com/2captcha-api#bounding_box).
1010

@@ -36,6 +36,7 @@ Also added support for the `bounding_box` method. The Bounding Box Method allows
3636
- [badReport](#badreport)
3737
- [goodReport](#goodreport)
3838
- [balance](#balance)
39+
- [Proxies](#proxies)
3940
- [Useful articles](#useful-articles)
4041
- [How to bypass Geetest v4 CAPTCHA](https://2captcha.com/blog/geetest-v4-support)
4142
- [Automatic reCAPTCHA V3 resolution - a tutorial for developers and customers](https://2captcha.com/blog/recaptcha-v3-automatic-resolution)
@@ -445,7 +446,28 @@ solver.balance()
445446
})
446447
```
447448

449+
## Proxies
450+
451+
You can pass your proxy as an additional argument for methods: recaptcha, funcaptcha, geetest, geetest v4, hcaptcha, keycaptcha, capy puzzle, lemin, turnstile, amazon waf, DataDome, CyberSiARA, MTCaptcha, Friendly Captcha and etc. The proxy will be forwarded to the API to solve the captcha.
452+
453+
We have our own proxies that we can offer you. [Buy residential proxies] for avoid restrictions and blocks. [Quick start].
454+
455+
Solving reCAPTCHA V2 using proxy:
456+
```js
457+
solver.recaptcha({
458+
pageurl: 'https://2captcha.com/demo/recaptcha-v2',
459+
googlekey: '6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u',
460+
proxy: 'HTTPS',
461+
proxytype: 'login:password@123.123.123.123:3128'
462+
})
463+
```
464+
465+
448466
## Useful articles
449467
* [How to bypass Geetest v4 CAPTCHA](https://2captcha.com/blog/geetest-v4-support)
450468
* [Automatic reCAPTCHA V3 resolution - a tutorial for developers and customers](https://2captcha.com/blog/recaptcha-v3-automatic-resolution)
451-
* Finding Sitekey <a href="./docs/hcaptcha.md">hCaptcha</a>
469+
* Finding Sitekey <a href="./docs/hcaptcha.md">hCaptcha</a>
470+
471+
<!-- Shared links -->
472+
[Buy residential proxies]: https://2captcha.com/proxy/residential-proxies
473+
[Quick start]: https://2captcha.com/proxy?openAddTrafficModal=true

0 commit comments

Comments
 (0)