Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the size of a recaptcha token generated from the recaptcha widget?

Trying to send the recaptcha token to a backend service for verification and I need to know the size of the token. Is it a standard size in bytes or is it variable

like image 281
newnamewhodis Avatar asked Sep 19 '25 16:09

newnamewhodis


1 Answers

The generated reCAPTCHA token is not a fixed size in either bytes or number of characters. The length is variable so I would not try to assign it to a fixed size string or buffer.

like image 71
Cory Kramer Avatar answered Sep 23 '25 11:09

Cory Kramer