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
* [Read more about Cloudflare Turnstile captcha](https://2captcha.com/2captcha-api#turnstile).
873
881
*
874
882
* @param {{ pageurl, sitekey, action, data, pingback, proxy, proxytype}} params The `сloudflareTurnstile` method takes arguments as an object. Thus, the `pageurl`, `sitekey` fields in the passed object are mandatory. [Open example](https://github.com/dzmitry-duboyski/2captcha-ts/blob/master/tests/turnstile.js)
875
-
* @param {string} params.pageurl Full `URL of the page where you see the captcha.
883
+
* @param {string} params.pageurl Full `URL` of the page where you see the captcha.
876
884
* @param {string} params.sitekey Is a value of `sitekey` parameter in the page source.
877
885
* @param {string} params.action Value of optional `action` parameter you found on page.
878
886
* @param {string} params.data Value of optional `data` parameter you found on page.
@@ -991,7 +999,7 @@ export class Solver {
991
999
* ### Solves Capy Puzzle captcha
992
1000
*
993
1001
* @param {{ pageurl, captchakey, api_server, version, pingback, proxy, proxytype}} params Parameters Capy Puzzle Captcha as an object.
994
-
* @param {string} params.pageurl Full `URLof the page where you see the captcha.
1002
+
* @param {string} params.pageurl Full `URL`of the page where you see the captcha.
995
1003
* @param {string} params.captchakey Value of `captchakey` parameter you found on page.
996
1004
* @param {string} params.api_server The domain part of script URL you found on page. Default value: `https://jp.api.capy.me/`.
997
1005
* @param {string} params.version The version of captcha task: `puzzle` (assemble a puzzle) or `avatar` (drag an object)..
@@ -1041,7 +1049,7 @@ export class Solver {
1041
1049
* ### Solves DataDome captcha
1042
1050
*
1043
1051
* @param {{ pageurl, captcha_url, userAgent, pingback, proxy, proxytype}} params Parameters DataDome Captcha as an object.
1044
-
* @param {string} params.pageurl Full `URL of the page where you see the captcha.
1052
+
* @param {string} params.pageurl Full `URL` of the page where you see the captcha.
1045
1053
* @param {string} params.captcha_url The value of the `src` parameter for the `iframe` element containing the captcha on the page.
1046
1054
* @param {string} params.userAgent ser-Agent of your MODERN browser
1047
1055
* @param {string} params.pingback URL for pingback (callback) response that will be sent when captcha is solved. URL should be registered on the server. [More info here](https://2captcha.com/2captcha-api#pingback).
@@ -1093,7 +1101,7 @@ export class Solver {
1093
1101
* ### Solves CyberSiARA captcha
1094
1102
*
1095
1103
* @param {{ pageurl, master_url_id, userAgent, pingback, proxy, proxytype}} params Parameters CyberSiARA Captcha as an object.
1096
-
* @param {string} params.pageurl Full `URL of the page where you see the captcha.
1104
+
* @param {string} params.pageurl Full `URL` of the page where you see the captcha.
1097
1105
* @param {string} params.master_url_id The value of `MasterUrlId` parameter obtained from the request to the endpoint `API/CyberSiara/GetCyberSiara`.
1098
1106
* @param {string} params.userAgent ser-Agent of your MODERN browser
1099
1107
* @param {string} params.pingback URL for pingback (callback) response that will be sent when captcha is solved. URL should be registered on the server. [More info here](https://2captcha.com/2captcha-api#pingback).
@@ -1143,7 +1151,7 @@ public async cyberSiARA(params: paramsCyberSiARA): Promise<CaptchaAnswer> {
1143
1151
* ### Solves MTCaptcha
1144
1152
*
1145
1153
* @param {{ pageurl, sitekey, userAgent, pingback, proxy, proxytype}} params Parameters MTCaptcha as an object.
1146
-
* @param {string} params.pageurl Full `URL of the page where you see the captcha.
1154
+
* @param {string} params.pageurl Full `URL` of the page where you see the captcha.
1147
1155
* @param {string} params.sitekey TThe value of `sitekey` parameter found on the page.
1148
1156
* @param {string} params.pingback URL for pingback (callback) response that will be sent when captcha is solved. URL should be registered on the server. [More info here](https://2captcha.com/2captcha-api#pingback).
1149
1157
* @param {string} params.proxy Format: `login:password@123.123.123.123:3128` You can find more info about proxies [here](https://2captcha.com/2captcha-api#proxies).
@@ -1187,6 +1195,102 @@ public async mtCaptcha(params: paramsMTCaptcha): Promise<CaptchaAnswer> {
1187
1195
}
1188
1196
}
1189
1197
1198
+
/**
1199
+
* ### Solves Cutcaptcha
1200
+
*
1201
+
* @param {{ pageurl, sitekey, userAgent, pingback, proxy, proxytype}} params Parameters MTCaptcha as an object.
1202
+
* @param {string} params.pageurl Full `URL` of the page where you see the captcha.
1203
+
* @param {string} params.sitekey TThe value of `sitekey` parameter found on the page.
1204
+
* @param {string} params.pingback URL for pingback (callback) response that will be sent when captcha is solved. URL should be registered on the server. [More info here](https://2captcha.com/2captcha-api#pingback).
1205
+
* @param {string} params.proxy Format: `login:password@123.123.123.123:3128` You can find more info about proxies [here](https://2captcha.com/2captcha-api#proxies).
1206
+
* @param {string} params.proxytype Type of your proxy: `HTTP`, `HTTPS`, `SOCKS4`, `SOCKS5`.
* @param {{ pageurl, sitekey, pingback, proxy, proxytype}} params Parameters Friendly Captcha as an object.
1250
+
* @param {string} params.pageurl Full `URL` of the page where you see the captcha.
1251
+
* @param {string} params.sitekey The value of `data-apikey` or `data-sitekey` parameter found on the page.
1252
+
* @param {string} params.pingback URL for pingback (callback) response that will be sent when captcha is solved. URL should be registered on the server. [More info here](https://2captcha.com/2captcha-api#pingback).
1253
+
* @param {string} params.proxy Format: `login:password@123.123.123.123:3128` You can find more info about proxies [here](https://2captcha.com/2captcha-api#proxies).
1254
+
* @param {string} params.proxytype Type of your proxy: `HTTP`, `HTTPS`, `SOCKS4`, `SOCKS5`.
0 commit comments