Using jquery (javascript) need to display facebook user name in html page using facebook user id. I am not using facebook api. Any one have any idea.
Using jquery (javascript) need to display facebook user name in html page using facebook
Share
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.
Without using the facebook API (Graph API or older facebook REST API) either javascript or PHP there’s no way you can achive this.
Facebook needs to authenticate your application before you ask for data.
You can use
fb:namefrom FBML (Facebook Markup Language) to achive it easily. But as recoomended, you should not use FBML for new applications since the recommended way is the new Graph API. FBML is in the process of being deprecated.Using the new Graph API you can get the JSON object for the user by fetching
https://graph.facebook.com/{userID}