views:

50

answers:

1

Hi ,

I know ,

Posting twit into twitter using API ,

But is it possible to delete posted tweet using api ,

Please advise me ,

Thanks

+3  A: 

You can use statuses/destroy. You didn't say which PHP library you're using, but it should have a wrapper for this. For instance, with twitterlibphp, it's destroyStatus.

Matthew Flaschen
Is it possible to mention which post i want to delete,
Bharanikumar
Yes, you pass the id of the post to delete as the argument.
Matthew Flaschen