Finally found the answer after research for two days. Hope this helps another. ** Decision: **
date_default_timezone_set('America/New_York');
$epochTime = strtotime("now +15 minute");
$data = [
'message' => 'Your message',
'no_story' => 0,
'link'=>'http://www.planwallpaper.com/static/images/Winter-Tiger-Wild-Cat-Images.jpg',
'picture'=>'http://www.planwallpaper.com/static/images/Winter-Tiger-Wild-Cat-Images.jpg',
'published' => 0,
'scheduled_publish_time' => $epochTime
];
$response = $fb->post('/'.$post->page_id.'/feed', $data, $pageAccessToken);
You can also specify a link using the link attribute.
source
share