Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to install google recaptcha in pl/sql

2664672Apr 30 2014 — edited May 2 2014

Am not using APEX

How to write code to check for valid response of https://developers.google.com/recaptcha/ in pl/sql?

Here's what I have so far:

    ---------------------------------------------------------------------CAPTCHA BEGINS-----------------------------------

     HTP.p ('

      <form action="" method="post">

    <!-- ... your form code here ... -->

    <script type="text/javascript"

       src="http://www.google.com/recaptcha/api/challenge?k=6Lc3xPISAAAAALx-LYrgQZVLEglu">

    </script>

    <noscript>

       <iframe src="http://www.google.com/recaptcha/api/noscript?k=6Lc3xPISAAAAALx-LYrgQZVLEglu"

           height="300" width="500" frameborder="0"></iframe><br>

       <textarea name="recaptcha_challenge_field" rows="3" cols="40">

       </textarea>

       <input type="hidden" name="recaptcha_response_field"

           value="manual_challenge">

    </noscript>

    <!-- ... more of your form code here ... -->

  </form>

    ');

 

    ---------------------------------------------------------------------CAPTCHA ENDS----------------------------------

thanks,

Alex Glaros

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 30 2014
Added on Apr 30 2014
2 comments
2,215 views