pdupavillon/express-recaptcha

I have 'g-recaptcha-response': array

paradoxina opened this issue · 1 comments

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];

my bad