我希望能够通过图形 API 更新页面中照片帖子的预定时间。
该帖子最初是使用以下 API 调用创建的:
$response = $facebook->post('/'.$idToPublish.'/photos',
array( 'url' => $url,
'published' => false,
'scheduled_publish_time' => $scheduledTimestamp,
'caption' => $text,
'access_token' => $page['accessToken']));
一切都是正确创建的,但是在更新时,我使用以下调用:
$response = $facebook->post('/'.$postID,
array('scheduled_publish_time' => $newScheduledTimestamp,
'access_token' => $pageToken ));
而且我总是得到 Graph 返回一个错误:(#100) Invalid parameter error。
一旦我取出参数'scheduled_publish_time',错误就会消失。
对这个有什么想法吗?根据 Graph API 文档,我们应该能够通过将新的 unix 时间戳发送到已发布的照片 ID 来更新帖子的预定时间。
谢谢