Skip to content

Instantly share code, notes, and snippets.

@harshvladha
Created December 9, 2016 18:41
Show Gist options
  • Select an option

  • Save harshvladha/e4b4af340a424eead40ed359b06b1fc2 to your computer and use it in GitHub Desktop.

Select an option

Save harshvladha/e4b4af340a424eead40ed359b06b1fc2 to your computer and use it in GitHub Desktop.
Social Login Plugin - Step -3
<?php
require 'init.php' //this path must be relative path to this file
require ROOT_DIR."libraries/functions/user_info.php"
echo "Full Name:".full_name();
echo "First Name:".first_name();
echo "Last Name:".last_name();
echo "User Id:".user_id();
echo "Profile Picture Link:".profile_pic_link();
echo "Gender:".gender();
echo "Email:".user_email();
echo "Date of Birth:".dob();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment