Reputation: 5013
I am implementing the reCAPTCHA AJAX API as described here. The documentation says that the privatekey must be POSTed to the verification URL.
Can someone explain why it is acceptable to be POSTing a private key? It seems like this would be a security issue? In fact, how is it acceptable to have the privatekey in a client side script at all?
Upvotes: 2
Views: 588
Reputation: 30111
The POST should be coming from your server, not the client.
Upvotes: 2