(Problem Solved) Had some issues in the code which i found out, thanks anyways. :)
I've created an app for posting photos to my facebook page via CronJob, I've successfully authenticated and got tokens for posting on the specific page using:
$graph_url = "https://graph.facebook.com/" . $page_id . "?fields=access_token&access_token="
. $params['access_token'];
Then using the following code and accessing the page's photos (as in the documentation)
$post_url = 'https://graph.facebook.com/'. $page_id .'/photos';
Using cURL to upload the photo:
function message($data,$token,$url)
{
// need token
$data['access_token'] = $token;
// init
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// execute and close
$return = curl_exec($ch);
curl_close($ch);
// end
return $return;
}
$page_access_token = $params['access_token'];
$post_url = 'https://graph.facebook.com/'. $page_id .'/photos';
print_r($post_url); echo("<br><br>");
print_r($params['access_token']); echo("<br><br>");
//echo( message(array( 'source' => '@que/xjy7M.png' ) , $page_access_token, $post_url ));
echo( message(array( 'source' => '@que/1.jpg') , $page_access_token, $post_url ));
}
But what happens is, the image is posted on my own profile. And if I post something other then a picture (status, link) on the page, then its instead of the page its posted as "me".
Any solution or Clues? I've spent all my day reading documentation but didn't find anything. Neither on stackoverflow.
Please let me know what I can do about it.