有人有使用 Twitter API 的经验吗?我正在开发我的网站,该网站可以将状态从我的网站推到 Twitter 时间线。从现在开始,点击按钮 Tweet 后,新状态将发布到 Twitter 时间线。
但是,我想设置日期时间以将状态发布到 Twitter 时间线。例如,我将日期时间设置为上午 9 点发布,然后在上午 8 点单击按钮;所以在上午 9 点,新的状态将在 Twitter 时间线中发布。那可能吗?
我的代码
单击按钮 Tweet 时,此代码将发布新状态:
<?php
session_start();
$message = "I want to set datetime to tweet new status";
$access_token = $_SESSION['access_token'];
$connection = new TwitterOAuth(YOUR_CONSUMER_KEY, YOUR_CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);
$parameters = array('status' => $message);
$status = $connection->post('statuses/update', $parameters);
?>