Sign in with Facebook notes
Sign in with Facebook notes visit Facebook for Developers website. Then login through your Account. Click on Get Started and verify your account. Now , We have create new app for that click on Create App button. after that , select Facebook login through web . Insert the sdk code in web page and place your app id in code properly . download facebook sdk in your project folder root. using command composer require facebook/graph-sdk Create config.php file Add following code in config.php file <?php //start session on web page session_start (); $fb = new \Facebook\ Facebook ([ 'app_id' => '379937770193328' , 'app_secret' => '969eba7d010dc91ca38213ef3ba6fb56' , 'default_graph_version' => 'v3.0' ]); ? > in index.php file include...