当我尝试发布预定的提要时,我发送的参数超出了我发送已发布参数和 schedule_publish_time 的正常参数。但是报错“Uncaught OAuthException: (#100) The specified schedule publish time is invalid.” 已经对日期格式进行了几次更改,但我没有再成功。
我尝试的最后一个是:
$date = date_parse_from_format('d/m/Y H:i:s', '31/05/2013 22:00:00');
$date = gmdate (DATE_ISO8601, mktime($date['hour'],$date['minute'],$date['second'],$date['month'],$date['day'],$date['year']));
$content['scheduled_publish_time'] = strtotime($ date);