Deleting tweet at Twitter doesn't remove it in the tweets View
So... other than removing from the database directly, how would you get rid of a tweet that has been imported?

Comments

pribeh’s picture

Category: support » feature

Bump. Really want this. I believe it's a feature request though. Revert it if I'm wrong.

jrefano’s picture

bumping as well, there needs to be an easy way to do this

sheena_d’s picture

Also, it seems like when you delete a Twitter account from the site, it should automatically delete that account's tweets from the site (or at least give you that option).

grp’s picture

subscribing

j0k3z’s picture

Also, when you turn off "import tweets" it still shows all previously imported tweets. Would be nice if it also hide those or deleted them or something

geerlingguy’s picture

+1 - the module's awesome already, hope to see it continue to develop/flourish :-)

pztrick’s picture

bump =p

it isn't too hard to manually delete from sql database, so for my one-tweeter implementation it's not a big problem... but if you have multiple users and they delete their accounts, it makes sense that you would delete any previously imported tweets.

rootdownmedia’s picture

Subscribe

pbz1912’s picture

I really want this too

Kane’s picture

Subscribe.
It'll look very strange if on someone else's twitter account won't be posts which exists on some site.

Dutchman’s picture

Subscribe

Anthony Pero’s picture

Version: 6.x-2.5 » 6.x-3.x-dev

I'm changing the version on this, because if this gets done, it should get done on the dev version first and backported if necessary. I do not have the skills to implement this, but I do have an idea for a simple workflow of how this might be accomplished that I'd like to put up here for discussion.

To me, it would be great to have a link in the Twitter Config section that rebuilds the database information, the way we do for links, or anything else. Basically, this module is caching information from Twitter in the site's database. It would be nice if we had a link to click that would wipe the data in that table, and rebuild the information with current info from Twitter.

Downside: Obviously this is a heavy handed way to get rid of one or two deleted tweets in your database. But it works, and for some sites, it's PROBABLY a good idea to be able to empty those table of old tweets periodically, anyway. Also, if you ARE archiving two years worth of tweets for some reason... Twitter only keeps them for 7 days, so when you performed this function, you'd lose all tweets older than 7 days.

Still, I think site admins should have an easy way to purge their database of old tweets without having to edit the database directly, and this would also fix the issue in this thread.

jjma’s picture

Will the delete option add to the overall load of the front end as well as the administration section?

Jon

javier1968’s picture

Bump this

webflo’s picture

i have started a sandbox with vbo integration. http://drupal.org/sandbox/webflo/1698568

xurizaemon’s picture

Status: Active » Needs work

Would prefer if this could come forward to 7.x-3.x and then get backported, but as you're already working on it for 6.x I'll leave version as it is. Thanks for engaging @webflo!

Homotechsual’s picture

If this is implemented it should be configurable. I for one don't wish all the politician's "slip up" tweets I've archived to be removed when the user deletes them from twitter or when one of my contributors looses their account...

dddave’s picture

Version: 6.x-3.x-dev » 6.x-5.x-dev
janis_lv’s picture

yep, this I'd love

xurizaemon’s picture

Title: How do you delete an imported tweet? » Expose UI to delete individual tweets
Version: 6.x-5.x-dev » 7.x-5.x-dev

Moving to 7.x, new features can be backported to 6.x. No progress updates in 12mo but webflo please update us with your progress if you got somewhere?

@Anthony Pero, I imagine we'd do this by deleting individual tweets - anyone who wants to start from scratch can wipe the DB table, so I think the VBO / individual item approach is preferable.

Anthony Pero’s picture

I totally agree, I was just proposing a simple solution.

loren.swendsen’s picture

+1 subscribing

damienmckenna’s picture

Issue summary: View changes
Status: Needs work » Active
hkirsman’s picture

A real life scenario. Our clients twitter account was hijacked. While the account is now ok again there's a tweet on the site that is not supposed to be there.

Maby there's should be Delete link next to "Reply", "Retweet" and "Favorite" in the tweets list? If you have the permission ofcourse.

+1

hkirsman’s picture

Or if you delete tweet on your twitter account, it should be detected by twitter module.

xurizaemon’s picture

@hkirsman, IMO this really has to be a per-site decision, because:

  1. supporting auto-delete means polling twitter for status of past tweets constantly, which is going to be a resource demand for sites with any number of tweets stored,
  2. comment 17 points out that some sites already are using this tool to archive tweets; auto-delete would be a misfeature for that use

Patches I think would be welcome to provide both (1) delete functionality for specific tweets via an additional callback / entity support (2) some means to bulk-scan existing tweets and detect / remove those which have been deleted. (#17 would probably find the ability to identify "slip up tweets" en masse and NOT delete them a feature!)

aharown07’s picture

Along the lines of #25 but to reduce resource demand, what if it just checks for deleted tweet over the last user-configurable # of hours... with a max of, say 24?
So the option would be a check box to "automatically remove tweets deleted in Twitter" with a parameter box for the max delete age or something along those lines.