I was testing my code. It worked fine, but the next day it stopped working. I spent a full day to fix it but it didnt work and finally, i changed the code to get the desired result. But then again when after 2 hours i tried the same code, it stopped working. My code is in php. Can anyone tell me why facebook is acting so weird? I'm really confused.
here is the code for image.php file
<?php
header("Content-Type: image/jpeg");
include_once 'facebook.php';
include_once 'config.php';
$facebook = new Facebook(array(
'appId' => FACEBOOK_APP_ID,
'secret' => FACEBOOK_SECRET_KEY,
'cookie' => true,
'domain' => '****',
));
$me = $facebook->api('/me');
$im = ImageCreateFrompng("certificate.png");
$black = ImageColorAllocate($im, 0, 0, 0);
$start_x = 35;
$start_y = 230;
Imagettftext($im, 20, 0, $start_x, $start_y, $black, 'ambient.ttf', $me['name']);
Imagejpeg($im, '', 100);
ImageDestroy($im);
error_reporting(E_ALL);
?>
In index file, I have put image.php as image source and index.php also contains access token.
This code worked well 2 hours back. But not working now. I didnt change anything.
Update => working means the image.php file was showing the desired image but it stopped showing the image after 2 hours. I'm using the same way to access tokens as in my other apps. and they are working fine.