Hi, i am using simple script php to post using ‘oauth’
require_once("twitteroauth/twitteroauth.php");
$connection = new TwitterOAuth("xxx", "xxx", "xxxx", "xxx");
$result = $connection->post('statuses/update', array('status' => "ok, posted"));
how i can post a tweet without being logged?
I tried but did not appear the tweet
tks.