我正在使用facebook sdk。我通过HTTP Post创建一个帖子,如下所示:
$param = array('access_token' => XXX,
'message' => The Message,
'picture' => The Picture,
'name'=>The Name,
'published'=>false,
'scheduled_publish_time'=>strtotime("The Time"),
);
$subs = $facebook->api("$pageId/feed", 'POST', $param);
它运行正常并在我的脸书页面上创建了一个日程安排帖子现在我想通过相同的方法更改日程安排时间,哪些参数应该在那里完成这项工作?