-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.go
More file actions
44 lines (39 loc) · 1.47 KB
/
const.go
File metadata and controls
44 lines (39 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package anticaptcha
const (
URL = "https://api.anti-captcha.com"
EP_createTask = "/createTask"
EP_getTaskResult = "/getTaskResult"
EP_getBalance = "/getBalance"
EP_getQueueStats = "/getQueueStats"
EP_reportIncorrectImageCaptcha = "/reportIncorrectImageCaptcha"
EP_getSpendingStats = "/getSpendingStats"
EP_getAppStats = "/getAppStats"
EP_generateCoupons = "/generateCoupons"
//Captcha Task Types
// solve usual image captcha
Type_ImageToText = "ImageToTextTask"
//Google Recaptcha puzzle solving
Type_NoCaptcha = "NoCaptchaTask"
//Google Recaptcha puzzle solving without proxies
Type_NoCaptchaProxyless = "NoCaptchaTaskProxyless"
//rotating captcha funcaptcha.com
Type_FunCaptcha = "FunCaptchaTask"
// funcaptcha without proxy
Type_FunCaptchaProxyless = "FunCaptchaTaskProxyless"
//select objects on image with an overlay grid
Type_SquareNetText = "SquareNetTextTask"
// captcha from geetest.com
Type_GeeTest = "GeeTestTask"
//captcha from geetest.com without proxy
Type_GeeTestProxyless = "GeeTestTaskProxyless"
//image captcha with custom form
Type_CustomCaptcha = "CustomCaptchaTask"
Queue_ImageToTextEn = 1
Queue_ImageToTextRu = 2
Queue_Recaptcha = 5
Queue_RecaptchaProxyless = 6
Queue_Funcaptcha = 7
Queue_FuncaptchaProxyless = 10
TaskStatus_Ready = "ready"
TaskStatus_Processing = "processing"
)