Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Is the tweet actually deleted after you make that call? – Terence Eden Jun 25 '12 at 10:29
No. I think you didn't understand scenario. Full scenario is: My system update user status (send tweet as user). User delete this tweet from twitter on twitter.com or other client. And i check this tweet that exists and system gives me that error – hardc0der Jun 25 '12 at 13:47
It appears that Twitter have updated their response. Deleted tweets show the 404 error – Terence Eden Jun 25 '12 at 14:57
Hi Terence, is this information is real oy you guest as this? – hardc0der Jun 26 '12 at 5:11
I can't find any information on the Twitter website, but their console is now returning 404 for deleted items, users who don't exist, etc. – Terence Eden Jun 26 '12 at 8:37
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.