How to get Access level Read-and Write from my own twitter account, so i can run programmable operations…
i have a application set up, with access token and secret but the access level is read only…but i want to do more than read stuff…
its not very clear on these things, on the “https://dev.twitter.com/docs/auth/obtaining-access-tokens” page
all it says is : just want to access the API from your own account…and some useless PHP example
any help would be great…
for example when i run the code
function createFriend($id,$user)
{
$tc = twit_connect($id);
$result = $tc->post('friendships/create',array('screen_name'=>$user));
print_r($result);
}
all i get is this response
stdClass Object
(
[error] => Read-only application cannot POST
[request] => /1/friendships/create.json
)