I am adding facebook connect to my existing project with codeigniter. Using philsturgeon's spark oauth2. Well it outputs Undefined variable: token. I checked the $provider and it returns:
OAuth2_Provider_Facebook Object ( [scope:protected] => email [name] => facebook [uid_key] => uid [callback] => [params:protected] => Array ( ) [method:protected] => GET [scope_seperator:protected] => , [client_id] => mycorrectappid [client_secret] => mycorrectsecret [redirect_uri] => http://mydomain.com/auth/session/facebook )
Here is the controller:
class Auth extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->load->view('fblogin_view'); //contains a link to 'auth/session/facebook' only
}
public function session($provider)
{
//echo 'Provider : ' . $provider; die();
$this->load->helper('url_helper');
$this->load->spark('oauth2/0.4.0');
$provider = $this->oauth2->provider($provider, array(
'id' => 'mycorrectappid',
'secret' => 'mycorrectsecret',
'scope' => 'email'
));
print_r($provider);
if ( ! $this->input->get('code'))
{
// By sending no options it'll come back here
$provider->authorize();
}
else
{
// Howzit?
try
{
$token = $provider->access($_GET['code']);
$user = $provider->get_user_info($token);
// Here you should use this information to A) look for a user B) help a new user sign up with existing data.
// If you store it all in a cookie and redirect to a registration page this is crazy-simple.
echo "<pre>Tokens: ";
var_dump($token);
echo "\n\nUser Info: ";
var_dump($user);
}
catch (OAuth2_Exception $e)
{
show_error('That didnt work: '.$e);
}
}
print_r($token);
}
}
/* End of file auth.php */
/* Location: ./application/controllers/auth.php */
Where I am doing wrong? Maybe it is obvious for someone but I am trying to getting familiar with remote logins. Thank you.