Looking to download all tweets (not just images) from a twitter account #7214
-
|
How might I go about this? I'm certain this should be possible, but nothing I know how to try is working. |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Mar 21, 2025
Replies: 1 comment
-
|
Enable {
"extractor": {
"twitter": {
"text-tweets": true,
"postprocessors": {
"name": "metadata",
"event": "post",
"filename": "{tweet_id}.json"
}
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mikf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Enable
text-tweetsand use ametadatapost processor to write their data to disk. To write only the text content, add"format": "{content}"to the post-processor's options.{ "extractor": { "twitter": { "text-tweets": true, "postprocessors": { "name": "metadata", "event": "post", "filename": "{tweet_id}.json" } } } }