I have just recently created a "Register With Facebook" button for our website, and I am attempting to achieve the same thing with Twitter.
However I am having difficulty finding precise step by step instructions for accomplishing the task with Twitter.
What I did with Facebook was:
// (1) - Create new Facebook object:
$facebook = new Facebook(array(
'appId' => $this->config->item('facebook_app_id'),
'secret' => $this->config->item('facebook_app_secret')
));
// (2) - Get all fields relating to logged-in user:
$facebook_user = $facebook->getUser();
// (3) - Retrieve all fields which we need to register a user on OUR website:
if ($facebook_user){//if logged in to Facebook:
$facebook_user_profile = $facebook->api('/me');
$fb_email = $facebook_user_profile["email"];
$fb_first_name = $facebook_user_profile["first_name"];
$fb_last_name = $facebook_user_profile["last_name"];
// ...
}
QUESTION 1:
How do I achieve the same thing with Twitter?
QUESTION 2:
I have created an app (https://dev.twitter.com/apps/new) and now have the 4 codes (Consumer key, Consumer secret, Access token, Access token secret), I have no idea what these codes are, but do I need these 4 codes for the task at hand?
Any suggestions or online resources would be great...