BirkhoffLee@tg says to YSITD
@mmis1000  request.post({         url: config.verifyURL,         encoding: null,         gzip: true,         form: {           secret: config.siteSecret,           response: gResponse         },         followRedirect: true       }, function(error, response, body) {         var e, error1, jsonResult;         if (error) {           deferred.reject(new Error("recaptcha!"));         }         console.log(body.toString());         try {           jsonResult = JSON.parse(body.toString());         } catch (error1) {           e = error1;           deferred.reject(new Error("recaptcha!"));         }         if (!jsonResult.success) {           deferred.reject(new Error("recaptcha"));         }         return deferred.resolve();       });