Example Rust application demonstrating ByeBot CAPTCHA integration with Actix-Web.
cargo runEdit the constants at the top of src/main.rs:
const BASE_URL: &str = "https://challenge.byebot.de"; // ByeBot CAPTCHA server URL
const API_KEY: &str = ""; // Your API key
const SITEKEY: &str = ""; // Your site key- HTML form includes the captcha widget via
<div class="captcha-widget" sitekey="..."> - Widget script (
/ray/widget.js) renders the captcha and adds a hiddenbyebot-tokenfield on success - Form submits to
/submit, server validates token via POST to/validate_token - Server returns success/error result