Caimen
Caimen

Reputation: 2619

Are there any good captchas specifically designed for mobile apps?

Is there anything that is less intimidating than recaptcha for mobile apps? My app is built with JQuery Mobile and most likely will never be available on the desktop. I am hoping there is a more visual captcha that would not require typing. So far most visual captchas I have found seem too large for a mobile app. I am mainly looking for something that is visual and small enough to fit within the average mobile screen. Any suggestions would be appreciated, I would even be willing to build something from scratch if someone has a good idea.

Upvotes: 5

Views: 2660

Answers (2)

kbyrd
kbyrd

Reputation: 3351

Damn, that MotionCAPTCHA link appears to be dead. I found this question looking for similar things to what we're working on at my current company.

We have a HumanDetect mobile SDK trying to solve a similar problem. The overall idea is we grab sensor data from the phone so we can determine "bot or not". You ask the SDK for a token, then send that token along with your REST request, and then that token can be validated. If everything works as expected only a mobile device in the hands of a human should produce a token that validates as "not a bot".

It's native code, not using the browser. For the end-user's point of view, it is transparent, the user isn't asked to perform any action.

Upvotes: 2

Icemanind
Icemanind

Reputation: 48696

I don't know if you are using HTML5 or not, but there is a pretty cool captcha that I've used called MotionCAPTCHA. What it does is it presents a shape and the user traces the shape with their finger on their mobile device. Its pretty cool. I've used it with Android and it works pretty well. It requires jQuery and HTML5.

Upvotes: 2

Related Questions