Verify Image Verification Code
POST/auth/v1/captcha/data/verify
Interface Description
Verify the captcha image to obtain captcha_token. Display the captcha obtained from the /auth/v1/captcha/data API on the user interface. After the user recognizes it, perform verification to obtain captcha_token.
Request
- application/json
Body
token Captcha verification token (string)required
Obtained from the /auth/v1/captcha/data API
key Recognized text content in captcha (string)required
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
- Example
Schema
captcha_token Captcha token (string)required
expires_in Expiration time, default 600 seconds (integer)required
{
"captcha_token": "string",
"expires_in": 0
}
{
"captcha_token": "v1.aC_uW2NycHQOSR7w0V7U4RtK5aYN-pTwGMhoIenRvZI0rsCSeRNG80dA3DcSnJSOsRVoZu4tDU1-N1zsFgcdoEIZttimdkGtQpbJ3Dud9Oou",
"expires_in": 600
}
Loading...