#
Using Cookies
#
Formatting cookies for Token API.
You may optionally provide cookies for the Token API to use for solving the challenge.
The cookie parameter should be provided as a Array of Dict .
This guide shows you how to format this value.
{
'key': 'MY_NOPECHA_KEY',
'type': 'hcaptcha',
'sitekey': 'b4c45857-0e23-48e6-9017-e28fff99ffb2',
'url': 'https://nopecha.com/demo/hcaptcha#easy',
'cookie': [
{
'name': 'nopechacookie0',
'value': 'hello world!',
'domain': 'nopecha.com',
'path': '/demo/hcaptcha',
'hostOnly': true,
'httpOnly': true,
'secure': true,
'session': false,
'expirationDate': 1670023021
},
{
'name': 'foo',
'value': 'bar',
'domain': 'www.nopecha.com',
'path': '/',
'hostOnly': false,
'httpOnly': false,
'secure': false,
'session': true
}
]
}
|||