I'm using twitter api with OAuth.
When I try to check tweet that i sent with this API, if tweet is exists API works fine. But if i deletede a tweet that posted by API, tweet check response always give me:
( [message] => Sorry, that page does not exist [code] => 34 )
response.
I'm trying with this code block:
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $userKey, $userKeySecret);
$postResult = $connection->get('statuses/show', array('id' => "209985431515828224"));
1 month before this API works fine and it will give me "No status found" response but now it gives that error.
Is this a bug or this is default response for deleted tweets?