Closed jazz265 closed 4 months ago
$connection->setApiVersion('2'); $status_id = '1234567890'; $rep= '@name test'; $result = $connection->post('statuses/update', array('in_reply_to_status_id'=> $status_id , 'status' => $rep )); var_dump($result);
I'm trying this code, but it doesn't work well and the result is returned as null. Tweets and media/upload are working, but only status/update is not working properly. Is there something missing?
'statuses/update' is API v1.1, you need to use the v2 version.
'statuses/update'
thank you so much!solved!
I'm trying this code, but it doesn't work well and the result is returned as null. Tweets and media/upload are working, but only status/update is not working properly. Is there something missing?