Skip to main content

Login with Facebook Account PHP Code

Hello All.

In the previous post, we have explained the Login with Google..


This post have Complete Code for Login / Sign In with Facebook Account for PHP Code
As you all know, FB is as popular as Google, so Login With Facebook is also a very important par of a website,

Below is the detailed explanation for complete procedure starting from creating  a  Facebook app to getting the complete details of user logged in .


Download Source Code

Live Demo


Starting is with create an APP for your site .

Note : You should log in to your Facebook account before moving ahead.

Go To https://developers.facebook.com/

Create an APP using the menu  APP appearing on developers toolbar on this page
   

The Following popup appears


 Fill in the details and CREATE APP

After this the APP dashboard appears .

The dashboard has the App Id




Though the app id is the only required field for login , in backend the process the URLs ie the domain url assigned to APP and that of the Facebook login invoking page .
So next step is to add the domain or Platform to the App. So move to the Settings Tab .
Theres the ADD PLATFORM . Click on it and the following popup appears . Click on website and add the url .














After being done with this , the following page is shown


















We are done with the App Creation and hopefully you have noted down the App Id .


Now the second phase , The Facebook Login using javascript .
Create a page and add the following code to it , replacing the appId variable .





The output for this page is follows












The above is the data received from the facebook after the user is successfully Logged In .
The data can be used to register any user or display their information on our website .

Thats all .

Other Related Posts

Login With Google Using php

http://learnandsharetoall.blogspot.in/2015/09/what-is-natural-language-processing.html


You can also check our Microservices post
Introduction to Microservices

Comments

Popular posts from this blog

Login with Google Account using PHP / Javascript using OAuth2.0

Login with Google Account using PHP with code This post have Complete Code for Login / Sign-in  with google Account  using PHP / Javascript with oAuth2.0 Basically today we have seen almost every website needs you to register yourself before you can post or take part in any discussions to the website. But it become a tedious task to register and login to many different sites. Solution is to provide the users the option to Login with existing Google / Facebook account as almost everyone have Facebook and Google account.. In this post, I am going to explain how to integrate the Google Login / Sign in  for your website. For this,  First you need to create your Client ID, Client Secret and your developer API key. For this go to https://developers.google.com/identity/sign-in/web/sign-in Click on the button Create Project. A new window will open up. Please select Create Project / or select already created Project. It will then ask for about type of Project. Please

How To Set Up Apache Virtual Hosts on Ubuntu

How to setup Virtual Host in Ubuntu 16 / Ubuntu 18 on localhost / local machine To run the website with host on localhost(With LAMP) becomes important in many cases. This blog post will demonstrate how to achieve this. Assuming you have LAMP already installed and reading the code from (/var/www/html) Follow the simple steps below Create the code base To Create the code, simply create a directory named localweb inside /var/www/html. Create a file index.php inside localweb directory Content of index.php file <?php  echo "Local Website"; ?> Now our code base is set, so we need to configure apache Go to apache directory cd  /etc/apache2/sites-available/ Create one file named localweb.conf with content <Directory /var/www/html/localweb/>     AllowOverride All </Directory> <VirtualHost *:80>     ServerAdmin admin@localweb.com     ServerName localweb.com     ServerAlias www.localweb.com     Documen

What is Natural Language Processing(NLP)

Introduction to Natural Language Processing(NLP) Natural Language Processing is a technique where in we need to process the normal human language and     makes sense out of it.   Basically this tutorial has two part one is theory and another is practical. We will post few posts on examples of Natural Language Processing on both Stanford CoreNLP / Apache OpenNLP. There are some steps that needs to be follow in processing the Natural Language. Actually there are many Natural Language Processing tools like Apache OpenNLP, Stanford CoreNLP etc. But major steps are same for everyone. a)     Sentence Detection :   In this part, the individual sentence are detected from the main sentence. As for example ,as seen in two different colours, Natural Processing Language is a good Technique. It has various parts ,   there are two different sentences. Using this step we detect this two individual sentence from the main sentence and do the processing for the next step.