I have 'g-recaptcha-response': array
paradoxina opened this issue · 1 comments
paradoxina commented
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
my bad