Skip to content

A lightweight java library to validate FriendlyCaptcha solutions in Java Services.

License

Notifications You must be signed in to change notification settings

FriendlyCaptcha/friendly-captcha-java

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

friendlycaptcha-api

A lightweight java library to validate FriendlyCaptcha solutions in Java Services.

Usage

FRCSolutionValidator validator = FRCSolutionValidator
                  .builder()
                    .secret("<your frc api key>")
                    .sitekey("<your frc sitekey>") // optional
                  .build();

if (validator.isValidSolution(solution)) { // solution coming from frc js
  // let person in
} else {
  // consider person a robot
}

About

A lightweight java library to validate FriendlyCaptcha solutions in Java Services.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%