-
I'm trying to get all media from the blogs I want but only get the metadata for the reblogs. Is this possible? Reblogs metadata can be used to rebuild deleted accounts since when a blog is deleted the reblogs aren't. Most posts are reblogs so it takes too much resources. |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Aug 18, 2023
Replies: 1 comment 2 replies
-
You can use It should be possible to only download regular blog files with {
"name": "metadata",
"event": "post",
"filename": "{id}.json",
"filter": "reblogged"
}
as a post processor. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Twi-Hard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
reblogged
andnot reblogged
as a filter statement to distinguish between regular and reblog.It should be possible to only download regular blog files with
--filter "not reblogged"
and to write only reblog post metadata withas a post processor.