You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+183-8
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@
9
9
10
10
# JavaScript module for 2Captcha API (captcha solver)
11
11
12
-
The easiest way to quickly integrate the [2Captcha](https://2captcha.com/) captcha-solving service into your code and automate the solving of any type of captcha.
13
-
Examples of API requests for different captcha types are available on the [JavaScript captcha solver](https://2captcha.com/lang/javascript) page.
12
+
The easiest way to quickly integrate the [2Captcha] captcha-solving service into your code and automate the solving of any type of captcha.
13
+
Examples of API requests for different captcha types are available on the [JavaScript captcha solver] page.
14
14
15
15
-[JavaScript module for 2Captcha API (captcha solver)](#javascript-module-for-2captcha-api-captcha-solver)
Use the following method to bypass an audio captcha (`mp3` formats only). You must provide the language as `lang = 'en'`. Supported languages are "en", "ru", "de", "el", "pt", "fr".
653
+
654
+
```js
655
+
solver.audio({
656
+
body:"SUQzBAAAAAAAHFRTU0UAAAA...",
657
+
lang:"en"
658
+
})
659
+
.then((res) => {
660
+
console.log(res);
661
+
})
662
+
.catch((err) => {
663
+
console.log(err);
664
+
})
665
+
```
666
+
501
667
## Other methods
502
668
503
669
### goodReport
@@ -558,15 +724,14 @@ At the moment we have implemented examples of bypassing Cloudflare Challenge pag
558
724
Links:
559
725
-[Cloudflare Bypassing Demo using Puppeteer](https://github.com/2captcha/cloudflare-demo)
560
726
-[Solving reCAPTCHA V2 using Puppeteer and clicks](https://github.com/2captcha/puppeteer-recaptcha-solver-using-clicks)
*[How to bypass captcha using JavaScript](https://2captcha.com/blog/how-to-use-javascript-to-bypass-captcha#how-to-solve-and-bypass-a-captcha-with-javascript-using-npm-package-2captchacaptcha-solver)
565
732
*[Bypassing Cloudflare Challenge with Puppeteer and 2Captcha](https://2captcha.com/blog/bypassing-cloudflare-challenge-with-puppeteer-and-2captcha)
566
733
*[How to bypass Geetest v4 CAPTCHA](https://2captcha.com/blog/geetest-v4-support)
567
734
*[Automatic reCAPTCHA V3 resolution - a tutorial for developers and customers](https://2captcha.com/blog/recaptcha-v3-automatic-resolution)
The code in this repository is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.
750
+
751
+
### Graphics and Trademarks
752
+
753
+
The graphics and trademarks included in this repository are not covered by the MIT License. Please contact <ahref="mailto:[email protected]">support</a> for permissions regarding the use of these materials.
0 commit comments