Asked this accidently as an answer in another thread, (sorry guys, new to the site) we'll try and do it right this time:
I really need to add a date/time, or a unix date to my tweets through my single user Twitter API 1.1 I've searched in vein for an answer to this. All I find everywhere are other people asking the same question.
I've included the posting code below:
// Send a tweet
$code = $connection->request('POST',
$connection->url('1.1/statuses/update'),
array('status' => "Mindless Test" ));
// A response code of 200 is a success
I use twitter for automated control on a non profit web site, in a private twitter account. (Wish they would let private accounts send duplicate tweets.) Adding time will cure it if I can figure out how.