| java.lang.Object | |
| ↳ | chan.content.ChanPerformer.CaptchaData |
Captcha data map. You can fill this map in onReadCaptcha(ReadCaptchaData) and then
read from this map while sending post for example.
User's input is available by INPUT key.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| API_KEY | Captcha API key. |
||||||||||
| CHALLENGE | Captcha challenge string: public key, image id, cookie or another string that represents captcha session. |
||||||||||
| INPUT | User's input. |
||||||||||
| REFERER | Referer header for captcha requests. |
||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Get captcha data from map. | |||||||||||
Put captcha data to map. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Captcha API key. May be used for default captcha handler.
Captcha challenge string: public key, image id, cookie or another string that represents captcha session.
User's input.
Referer header for captcha requests. May be useful with reCAPTCHA 2.
Get captcha data from map.
| Parameters | |
|---|---|
key |
String:
Data key. |
| Returns | |
|---|---|
String |
Data value. |
Put captcha data to map.
| Parameters | |
|---|---|
key |
String:
Data key. |
value |
String:
Data value.
|