#captcha #privacy #gdpr #trustcaptcha #european-union

trustcaptcha-rust

Trustcaptcha 库针对 Rust,提供验证码、安全功能和符合 GDPR 的用户验证

3 个版本 (稳定)

1.0.1 2024 年 6 月 9 日
1.0.0 2024 年 6 月 6 日
0.0.1 2024 年 6 月 6 日

#12#captcha

Download history 370/week @ 2024-06-05 25/week @ 2024-06-12

每月 92 次下载

Apache-2.0

10KB
135

Trustcaptcha Rust 库

该 Rust 库帮助您将 Trustcaptcha 集成到您的 Rust 后端应用程序中。

什么是 Trustcaptcha?

一种保护您免受机器人攻击的验证码解决方案,特别关注用户体验和数据保护。

您可以在您的网站上找到更多信息: www.trustcaptcha.com

库如何工作?

有关使用库的详细说明和示例,请参阅我们的 文档

简例

在这里,您可以看到一个可能的集成的简短代码示例。有关完整和最新的集成说明,请参阅我们提供的 文档

安装库

cargo添加 trustcaptcha-rust

获取和处理结果

// Retrieving the verification result
let verification_result = match CaptchaManager::get_verification_result(secret_key, "<verification_token_from_your_client>").await

// Do something with the verification result
if !verification_result.verification_passed || verification_result.score > 0.5 {
    info!("Verification failed, or bot score is higher than 0.5 – this could indicate a bot.");
}

想法和支持

如果您有任何想法、建议或需要支持,请 联系我们

依赖项

~16–31MB
~509K SLoC