Hello, Im building a php script that post auto tweet on user’s account, I have something like this:
<?php
$oauth_token = AAAAAAAAAAAAAAAAAAAAAAAAAA;
$oauth_token_secret = BBBBBBBBBBBBBBBBBBBBBBBBBBB;
$tweet = A random tweet;
?>
I can get oauth_token and oauth_token_secret and i save it into variables, but i need a way to post the $tweet on php, thanks.