0
私はrequestifyを使ってrecaptchaを検証しようとしています。これは、ドキュメントがAPIについてこう言われる、requestifyでgoogle recaptchaを検証していますか?
API Request
URL: https://www.google.com/recaptcha/api/siteverify
METHOD: POST
POST Parameter Description
secret Required. The shared key between your site and ReCAPTCHA.
response Required. The user response token provided by the reCAPTCHA to the user and provided to your site on.
remoteip Optional. The user's IP address.
これは私が得る応答は私がでパラメータを掲示することができると思います
{
"success": false,
"error-codes": [
"missing-input-response",
"missing-input-secret"
]
}
である私の要求
です間違った方法か多分私はapiのドキュメントを誤解しています。
あなたの秘密は本当のプライベートキーではないことを願っています。どちらが「プライベート」なのですか – Martial
これは単なるデベロッパーシークレットですが、ありがとう! – Himmators