Anton Sementsov
Anton Sementsov

Reputation: 1246

Get twitter status message by id

When i send status on twitter, i have response with id of this status. Someone know, can i get status meesage by id, from response.

 $update_status = $twitterObj->post_statusesUpdate(array('status' => $tweet_msg));
 temp = $update_status->response;

 $twitterInfo = $twitterObj->get_accountVerify_credentials();
 $twitterInfo->response;
 $message_id = $twitterInfo->status->id_str;

in $message_id i have an id of status message

Upvotes: 0

Views: 994

Answers (1)

Arfeen
Arfeen

Reputation: 2623

here is the url for twitter api specs:

https://dev.twitter.com/docs/api/1/get/statuses/show/%3Aid

Upvotes: 1

Related Questions