Rust CAPTCHA Integration
The following tutorial will guide you on how to integrate the TrustCaptcha CAPTCHA solution into your Rust backend to retrieve and evaluate the CAPTCHA verification result.
Quick start
Section titled “Quick start”use trustcaptcha::trust_captcha::TrustCaptcha;
let trust_captcha = TrustCaptcha::builder("<your_api_key>").build()?;let result = trust_captcha.get_verification_result("<verification_token_from_the_client>").await?;if !result.verification_passed || result.score > 0.5 { // possibly an automated request}For custom timeouts, a proxy, or a custom API host see configured usage below.
Preparation
Section titled “Preparation”You should have already completed the following steps before you start with CAPTCHA validation in your Rust backend.
Read the basic Information: For a basic overview, please read the get started guide. We also recommend that you familiarize yourself with the technical concept of TrustCaptcha.
Existing CAPTCHA: If you don’t have a CAPTCHA yet, sign in or create a new user account. Then create a new CAPTCHA.
A frontend with TrustCaptcha: Integrate the TrustCaptcha widget into your frontend. Go to the CAPTCHA widget guide.
Existing Rust project: You need a Rust project in which you want to integrate TrustCaptcha.
Verification token: You need the verification token from your frontend, which you receive every time you successfully solve the CAPTCHA.
Follow the three steps below to retrieve and evaluate the CAPTCHA verification result in your Rust backend.
You can find the source code of our Rust CAPTCHA integration on Github.
1. Add dependency
Section titled “1. Add dependency”To use the TrustCaptcha Rust library, you first need to add the corresponding dependencies to your project.
cargo add trustcaptcha@^3.0You can find our TrustCaptcha Rust package on crates.io.
2. Fetch result
Section titled “2. Fetch result”In the next step, retrieve the CAPTCHA result from our servers.
If the CAPTCHA widget has been successfully solved in the frontend, you will receive a so-called verification token. Send this to your backend. You will also need an api-key. You can manage your API keys in the dashboard of your CAPTCHA.
Use the TrustCaptcha class of our Rust integration to retrieve the verification result from our servers. For the simple case use the static shortcut shown right below; for advanced configuration (custom API host, timeouts, proxy) use the builder/constructor variant further down on this page.
// Retrieving the verification resultlet trust_captcha = TrustCaptcha::builder("<your_api_key>").build()?;let verification_result = match trust_captcha.get_verification_result("<verification_token_from_the_client>").await { Ok(result) => result, Err(e) => { // Fetch verification result failed - handle error error!("Failed to fetch verification result: {}", e); return Ok(HttpResponse::InternalServerError().json(json!({"error": "Captcha verification failed"}))); }};3. Evaluate the result
Section titled “3. Evaluate the result”Once you have successfully fetched the verification result, you can plan your next steps based on it. A concrete overview of all the information contained in the verification result and their respective meanings can be found in the result validation overview.
// Act on the verification resultif !verification_result.verification_passed || verification_result.score > 0.5 { info!("Verification failed or bot score > 0.5 – possible automated request.");}Configured usage
Section titled “Configured usage”If you need more control — a different API host, custom timeouts, or a proxy — use the builder.
use std::time::Duration;use trustcaptcha::trust_captcha::TrustCaptcha;
let trust_captcha = TrustCaptcha::builder("<your_api_key>") .api_host("https://api.trustcomponent.com") .connect_timeout(Duration::from_secs(3)) .read_timeout(Duration::from_secs(5)) .proxy("http://proxy.example.com:8080") .build()?;
let result = trust_captcha.get_verification_result("<verification_token_from_the_client>").await?;A built TrustCaptcha is immutable and safe to share: build it once and reuse it across all requests.
Builder methods
Section titled “Builder methods”| Method | Type | Default | Description |
|---|---|---|---|
TrustCaptcha::builder(api_key) | &str (required) | — | Your API key. Must not be empty. |
.api_host(host) | &str | https://api.trustcomponent.com | Override the API host. Useful for staging environments. |
.connect_timeout(d) | Duration | 3s | Connect timeout. |
.read_timeout(d) | Duration | 5s | Read timeout (total request timeout). |
.proxy(url) | &str | none | HTTP proxy URL. |
.build() | — | — | Returns the configured TrustCaptcha instance. |
Failover
Section titled “Failover”Our service runs in a high-availability setup, so outages are rare in practice. If you want maximum availability — even for the unlikely case where our service is unreachable — you can decide upfront how your backend should react, so your forms and processes don’t block during such an event. Read the Failover behavior page first — it covers the concept, the required widget-side opt-in, the operational checklist, and how to filter failover-derived results in high-security flows.
Once you’ve decided on a policy, the library returns two typed errors:
ServerUnreachableError— high-trust (your backend cannot reach our servers). For example: allow the request and log the incident.ClientReportedServerUnreachableError(HTTP412) — low-trust (the widget claimed a failover, but the backend reaches us fine). For example: reject or soft-challenge.
match trust_captcha.get_verification_result(token).await { Ok(result) => { // Handle the result as you normally would (verification_passed, score, your own policy). } Err(e) if e.is::<ServerUnreachableError>() => { // Example: our servers are unreachable. Allow + log. } Err(e) if e.is::<ClientReportedServerUnreachableError>() => { // Example: widget claimed an outage but the backend reaches us. Reject or soft-challenge. } Err(_) => { // Other error. }}Errors
Section titled “Errors”When the result cannot be retrieved successfully the library returns a boxed error. Downcast (downcast_ref::<...>()) to discriminate between them.
| Error type | When it is returned |
|---|---|
ApiKeyInvalidError | The API key was rejected (HTTP 403). |
VerificationTokenInvalidError | The verification token could not be parsed (malformed base64 / missing verificationId). |
VerificationNotFoundError | No verification was found for the given verification token (HTTP 404). |
VerificationNotFinishedError | The verification has not yet been completed by the user (HTTP 423). |
VerificationResultExpiredError | The result has expired and can no longer be retrieved (HTTP 410). |
VerificationResultRetrievalLimitReachedError | The result has reached its maximum retrieval count (HTTP 429). |
ServerUnreachableError | The TrustCaptcha server could not be reached at all (connection error / timeout). See Failover behavior. |
ClientReportedServerUnreachableError | The widget claimed a failover, but the gateway has no record of a recent outage (HTTP 412). See Failover behavior. |
UnknownError | Any other unexpected HTTP status code. |
Example implementation
Section titled “Example implementation”The following example shows a possible implementation of TrustCaptcha in a Rust backend.
In this example: When a POST request is sent to /api/example, the CAPTCHA verification token is sent to the Rust backend in the request body. In the backend, our library is used to retrieve the CAPTCHA verification result from our servers and evaluate it. If the verification fails or the bot score exceeds 0.5, a warning is displayed. In addition, the entire verification result is returned to the client.
Hint: The steps and thresholds shown are examples and should be adapted to your individual requirements in your specific use case.
The complete example including source code can be found on Github.
use actix_cors::Cors;use actix_web::{web, App, HttpServer, HttpResponse, Error, middleware::Logger};use serde::Deserialize;use serde_json::json;use log::{info, error};use trustcaptcha::trust_captcha::TrustCaptcha;
#[derive(Deserialize, Debug)]struct VerificationRequest { #[serde(rename = "verificationToken")] verification_token: String,}
async fn post_api_example(verification_request: web::Json<VerificationRequest>) -> Result<HttpResponse, Error> { info!("Received request: {:?}", verification_request);
let verification_token = &verification_request.verification_token;
// Retrieving the verification result let trust_captcha = TrustCaptcha::builder("<your_api_key>").build() .map_err(|e| { error!("Builder failed: {}", e); actix_web::error::ErrorInternalServerError("captcha init failed") })?; let verification_result = match trust_captcha.get_verification_result(verification_token).await { Ok(result) => result, Err(e) => { // Fetch verification result failed - handle error error!("Failed to fetch verification result: {}", e); return Ok(HttpResponse::InternalServerError().json(json!({"error": "Captcha verification failed"}))); } };
// Act on the verification result if !verification_result.verification_passed || verification_result.score > 0.5 { info!("Verification failed or bot score > 0.5 – possible automated request."); }
Ok(HttpResponse::Ok().json(verification_result))}
#[actix_web::main]async fn main() -> std::io::Result<()> { env_logger::init();
HttpServer::new(|| { let cors = Cors::default() .allow_any_origin() .allow_any_method() .allow_any_header() .max_age(3600);
App::new() .wrap(cors) .wrap(Logger::default()) .route("/api/example", web::post().to(post_api_example)) }) .bind("127.0.0.1:8080")? .run() .await}Next steps
Section titled “Next steps”Once you have integrated the TrustCaptcha widget into your frontend and the CAPTCHA result validation into your backend, you can use TrustCaptcha to its full extent. However, we still recommend the following additional technical and organizational measures:
Security rules: You can find many security settings for your CAPTCHA in the CAPTCHA settings. These include, for example, authorized websites, CAPTCHA bypass for specific IP addresses, bypass keys, IP based blocking, geoblocking, individual difficulty and duration of the CAPTCHA, and much more. Learn more about the security rules.
Privacy & GDPR compliance: Include a passage in your privacy policy that refers to the use of TrustCaptcha. We also recommend that you enter into a data processing agreement with us to stay GDPR-compliant. Learn more about data protection.
Accessibility & UX: Customize TrustCaptcha to your website so that your website is as accessible as possible and offers the best possible user experience. More about accessibility.
Failover behavior: Decide how your backend should behave when our service is temporarily unreachable. This is particularly important for high-availability flows where blocking real users during an outage is worse than letting through a small amount of unverified traffic. Learn more about failover behavior.
Testing: If you use automated testing, make sure that the CAPTCHA does not block it. Learn more about testing.