Hello every one,
I want to post frequently tweets on behalf of my website customers. I have already oauth_token and oauth_token_secret for users.
My code:
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, USER_OAUTH_TOKEN, USER_OAUTH_TOKEN_SECRET);
$connection->post(‘statuses/update’, array(‘status’ => “tweeting for users”))
Best Regards.