[twitter] Add support for unretweet and post/comment deletion #1211
No reviewers
Labels
No labels
2018.09
2019.01
2019.03
2019.06
2019.09
2019.12
2020.03
2020.06
2020.09
2020.12
2021.03
2021.07
2021.09
2022.02
2022.06
2022.09
2022.12
2023.04
2023.05
2023.09
2024.03
2024.06
2024.09
2024.12
dependencies
Hackathon 2021
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: friendica/friendica-addons#1211
Loading…
Reference in a new issue
No description provided.
Delete branch "task/11022-twitter-support-delete"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes https://github.com/friendica/friendica/issues/11022
Also:
Remaining caveat: Comments posted on Twitter and imported in Friendica do not trigger any Notifier task, possibly because they are private to the user and don't require any remote deletion notifications sent. Comments posted on Friendica and mirrored on Twitter trigger the Notifier task and the Twitter counter-part will be deleted accordingly.
Depends on https://github.com/friendica/friendica/pull/11025 for the hook part.
@annando Some checks don't seem to make sense in
twitter_post_hook
, like the checks on the pconfigtwitter.import
value in a hook meant to post data to Twitter. On the contrary we don't check the pcfonfigtwitter.post
value in the same hook function even though it is meant to control posting to Twitter.@MrPetovan shall I wait for @annando 's Feedback
That check for "import" is meant for the special handling of imported Twitter posts, I guess. So when we are not importing Tweets then we are stopping here. You can see here the origin: https://github.com/friendica/friendica-addons/pull/157/files
Why are we stopping a process meant to export content to Twitter with the import config?
No, my question is tangential to the original task.