reCAPTCHA in Appcelerator Titanium
February 11, 2018 · View on GitHub
Use the native Android reCAPTCHA API in Appcelerator Titanium with Hyperloop.
⚠️ This module is still in development and cannot be used, yet! Feel free to check-out the remaining "TODO" comments to address those.
Example
var reCAPTCHA = require('ti.recaptcha');
// Initialize service
reCAPTCHA.initialize('<YOUR_SITE_KEY>');
// Verify current activity
reCAPTCHA.verify(function(e) {
if (e.success === false) {
Ti.API.error('Error verifying current window: ' + e.error);
return;
}
alert('YEY!');
});
Please check Resources/app.js for a full example.
Authors
- Hans Knöchel (@hansemannnn / Web)
License
MIT
Contributing
Code contributions are greatly appreciated, please submit a new pull request!