You can easily identify anyone by viewing the source of their FB pic. For example:
http://profile.ak.fbcdn.net/hprofile-ak-snc4/hs444.snc4/48985_665523839_4409_q.jpg
profile ID is 665523839, which you can plug in to see all their details: http://www.facebook.com/profile.php?id=665523839The python to do it would look something like this:
def cache_fb_photo(fb_uid,cache_name):
import urllib
import time
request = urllib.urlopen("https://graph.facebook.com/%s/picture" % (fb_uid))
photo = request.read()
photo_location = "/path/to/photo/cache/cache_name"
cached_photo = open(photo_location, "w")
cached_photo.write(photo)
cached_photo.close()
This may or may not violate facebook's ToS. Obviously it would take more than this to actually put it into production, but this would kindof work.The fact that it is a 'pain' to make the effort to protect someones identity means you're probably in the wrong business.
Another issue I find is that I am unable to 'chat' with anyone. It makes me feel like you site is padding with bots that don't speak back to you. They just sit there.
I don't see this site 'blowing' up or even becoming that cool. My recommendation is not to quit your day job. Use your skills on another web site.
Charles (person that submitted this), if you want people to check out your app, fine, awesome. They're doing that right now. I think people are offering constructive criticism about it.
Blatantly registering puppet accounts to try and get your site onto the front-page is just bad form.
The fact that users can be (at least partially) identified by their facebook profiles, should prevent predatorial behaviour.
I would include a three strike policy where your users could denounce rude and abusive behaviour, and after 3 complaints, the accused could be banned from using the application.
Also, identification of a Facebook profile does not necessarily prevent predatorial behavior. It doesn't promote it, sure, but anyone can make a believable fake profile.
More potential than chatroulette is a bold claim considering they came first. Despite that, your app does have potential, and personally, I would use it, at least the concept of it. Right now it's not very usable. It rotates through like 5 people and they're not necessarily 'there'.