I used faceBook API . it was working earlier now I am getting this below error:
Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user. thrown in /home/softquan/public_html/roxytrends/fb/src/base_facebook.php
CODE :
// FACEBOOK PROCESS
require 'fb/src/facebook.php';
// create our app instance
$facebook = new Facebook( array (
'appId' => '314407275304496',
'secret' => '0d5e2c3cc68eff98bfcdff2ead5b7725',
'cookie' => true
));
// Get FB User ID
$fb_id = $facebook->getUser();
What are the things I am missing here.