Please go through our Facebook Application setup guide again. Specifically, step 8, for making your application 'live'. That's likely the cause, but again, check through all the steps just to make sure you didn't miss something.App Not Setup: The developers of this app have not set up this app properly for Facebook Login.
public static $CURL_OPTS = array(
CURLOPT_CONNECTTIMEOUT => 10,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 60,
CURLOPT_USERAGENT => 'facebook-php-3.2',
);
public static $CURL_OPTS = array(
CURLOPT_CONNECTTIMEOUT => 10,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 60,
CURLOPT_USERAGENT => 'facebook-php-3.2',
CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V4
);
// Set the cURL options.
curl_setopt_array($ch, $options);
// Set the cURL options.
$options[CURLOPT_IPRESOLVE] = CURL_IPRESOLVE_V4;
curl_setopt_array($ch, $options);
Join our newsletter to get alerts for Joomla releases, tips and tricks and extension updates.