pdupavillon / express-recaptcha

Implementation of google recaptcha v2 & V3 solutions for express.js
MIT License
128 stars 22 forks source link

I have 'g-recaptcha-response': array #39

Closed paradoxina closed 4 years ago

paradoxina commented 4 years ago

I have 'g-recaptcha-response': [ '', '03AOLTBLTmXVEzta....] temporarily solved the problem by replacing var query_string = 'secret=' + this._secret_key + '&response=' + response; on var query_string = 'secret=' + this._secret_key + '&response=' + response[1];

paradoxina commented 4 years ago

my bad