Use reCaptcha with ZK"
From Documentation
Line 17: | Line 17: | ||
= How to Apply = | = How to Apply = | ||
== Include recaptcha API & Configuration == | == Include recaptcha API & Configuration == | ||
+ | |||
+ | <source lang='xml'> | ||
+ | <zk xmlns:n="native" xmlns:c="client"> | ||
+ | <script type="text/javascript" src='https://www.google.com/recaptcha/api.js' defer="true" /> | ||
+ | .. | ||
+ | |||
+ | <n:div class="g-recaptcha" | ||
+ | data-sitekey="6Lcj5AYTAAAAAHp_ATdyZcWkMi7lzO_JZPMhYj4S" | ||
+ | data-callback="afterValidate" /> | ||
+ | </source> | ||
== Check Verification Result == | == Check Verification Result == |
Revision as of 09:26, 27 March 2017
Author
Hawk Chen, Engineer, Potix Corporation
Hawk Chen, Engineer, Potix Corporation
Date
?
?
Version
ZK 8.0.4
ZK 8.0.4
Introduction
https://www.google.com/recaptcha/intro/invisible.html
https://developers.google.com/recaptcha/docs/start
Get reCaptcha
Please follow Google's guide to get reCaptcha API key: https://developers.google.com/recaptcha/docs/start
How to Apply
Include recaptcha API & Configuration
<zk xmlns:n="native" xmlns:c="client">
<script type="text/javascript" src='https://www.google.com/recaptcha/api.js' defer="true" />
..
<n:div class="g-recaptcha"
data-sitekey="6Lcj5AYTAAAAAHp_ATdyZcWkMi7lzO_JZPMhYj4S"
data-callback="afterValidate" />
Check Verification Result
Reuse
Comments
Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License. |