Alternatives to requiring users to register for an account?

Posted by jamieb on Stack Overflow See other posts from Stack Overflow or by jamieb
Published on 2010-12-28T05:29:41Z Indexed on 2010/12/28 15:53 UTC
Read the original article Hit count: 373

I'm working on a side project to build a new web app idea of mine. For the sake of discussion, let's say this app displays a random photograph of a famous work of art. On a scale of 1 to 5, users are asked to rate how well they like each piece of art, and then are shown the next photo. Eventually, the app is able to get an sense of the person's style and is able to recommend artwork that he/she may find pleasing.

The whole concept is similar to Netflix. I understand how to do all the preference matching logic (although not as sophisticated as Netflix). But I'd like to find a way to do this without requiring that users create an account first. This is a novelty website that a typical user might use only a handful of times. Requiring registration is overkill and will likely drastically reduce it's utility. I'd like to allow people to begin rating artwork within five seconds of their initial pageview, yet maintain the integrity of the voting (since recommendations are predicated on how other people have rated the various pieces of artwork).

Can it be done?

Some ideas:

  • OpenID. The perfect solution except for the fact that it's not wildly used and my target audience isn't the most technically adept demographic.
  • Text message. User inputs phone number and is texted a four digit code to key into the web app. Quick, easy, and great way to limit abuse. However, privacy concerns abound... people are probably even less likely to give me their phone number than their email address.
  • Facebook login. I personally don't have a Facebook account due to privacy concerns. And I'd really hate to support such a proprietary platform.
  • Hash code/Bookmark. Vistor's initial pageview generates a 5 or 6 digit alphanumeric code that is embedded in each subsequent URL. They can bookmark any page to save their state. Good: Very simple system that doesn't require any user action. Bad: Very easy to stuff the ballot box, might be difficult to account for users sharing the link containing their ID code via email or social networking sites.

© Stack Overflow or respective owner

Related posts about web-applications

Related posts about authentication