my config/facebook.php
$config['appId'] = 'XXXXX';
$config['secret'] = 'XXXX';
$config['fb_access_token'] = 'XXXXXX';
my controller:
$this->load->library('Facebook');
echo $this->config->item('fb_access_token');
Outputs nothing for the the token? yet I know the library is loading as I can call getAppID ok. It just doesn't seem to be loading this config file.
Also tried this from the controller:
$this->config->load("facebook",TRUE);
$config = $this->config->item('facebook');
$this->load->library('facebook', $config);