I’ve never been to Yelp on this new computer I’m on, however that site was able to see that I’m a facebook user and cusomized the site for me.
Can someone tell me how this is accomplished, and what I need to do to imitate this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ve authorized a Yelp owned Facebook application somewhere (from your phone, yelp.com, or somewhere). If you authorize a Facebook application, that application has access to information that you provide to it through your Facebook account. Meaning, you should be able to see a “Yelp-owned” application listed here: http://www.facebook.com/settings/?tab=applications.
If you want to imitate this on your own site you should read more on Facebook Applications at http://developers.facebook.com/docs/authentication/. You simply register a Facebook application, then plop the Facebook JDSK into your site to ascertain if a user has authenticated with your facebook application or not.
FB.getLoginStatus(function(response) { if (response.session) { // logged in and connected user, someone you know... customize the experience } else { // no user session available, someone you dont know... } });