I'm trying to POST a status update to twitter via curl, but I'm getting authentication errors. Is anyone doing this successfully? I don't want to use the API, just curl. I'm currently extracting the authenticity_token, but I'm still getting "could not authenticate". I'm posting to:
http://api.twitter.com/1/statuses/update.json
with form data:
This is still getting me authentication errors... anyone? Thanks
http://api.twitter.com/1/statuses/update.json
with form data:
PHP:
$postData = Array(
'include_entities' => 'true',
'status' => 'ohmyhagosh',
'post_authenticity_token' => $token
);
This is still getting me authentication errors... anyone? Thanks