It currently works but that's only because json.rkt has been modified.
(def post-getjson (url params (o port stdin)) (fromstring (post-url url params) (read-json (port)))) (def recaptcha-response (s r) (post-getjson "https://www.google.com/recaptcha/api/siteverify" (list 'secret s 'response r))) (def verify-captcha (req) (do (= resp (recaptcha-response recaptcha-secret* (alref (req 'args) "g-recaptcha-response"))) (if resp!success (pr "success") (pr "failure"))))
Can I ask how you did a "boolean check" on #t?
-----