Verifying university membership/attendance via email address
Posted
by mettadore
on Stack Overflow
See other posts from Stack Overflow
or by mettadore
Published on 2010-05-31T16:37:36Z
Indexed on
2010/05/31
16:43 UTC
Read the original article
Hit count: 323
My client's web app allows members to sign up (Rails using AuthLogic) and those signups are limited in that they must be under the auspices of a university. To wit: A university organizer can sign up to be the representative of a university, and students can sign up as "attendees" of that university.
I've been tasked with finding if there is a programmatic way to verify university membership/attendance. The only way I can see doing this is having a database of universities and a database of associated emails, and verifying that the student's email address is part of this database. That doesn't help if using Facebooker and AuthLogic's "sign up with Facebook credentials" ability, however.
I suspect the answer to this is "via human intervention," and that this is something we can't solve programmatically. Either we, or the university, will have to bite the bullet and check records. However, I'd thought I'd ask if anyone else has run into the issue of verification of university membership before.
© Stack Overflow or respective owner