Skip to content

Instantly share code, notes, and snippets.

@ivorytowerdds
Last active July 4, 2020 13:45
Show Gist options
  • Save ivorytowerdds/5d5e7b6143678db9c462963d59479cde to your computer and use it in GitHub Desktop.
Save ivorytowerdds/5d5e7b6143678db9c462963d59479cde to your computer and use it in GitHub Desktop.
harmony-twitter
#!/bin/bash
for name in stse rongjianlan leo_hao denni_swon gupadhyaya AndrewIsTyping cottontail2000 thechaindev xiaopen01917726 janetlharmony danielvdmaden YishuangC potvik1 haodi2best JianZhen7 JackyTheCoder sahildewan nickwh8te lijiang2087 chaowen28 dirschmidt nickostopoulos GIZEMCAKIL maggiewangharm1 niteesh_harmony vasilich_nick mannymcoy SonnyNeverKnows CB_Cryptalk danboyden drop101001 alex_yatesalex IScirlet iBruno_marshall sophoah JB273_Jurgen yelllowsin mindpop3 mirrormirage0; do
echo -n $name ''
curl -s "https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=$name&count=200&tweet_mode=extended" \
-H 'x-csrf-token: d39ff7dfbf373012ea78f82d9888d9ed' \
-H 'authorization: Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA' \
-H 'cookie: auth_token=aaaa326d1ee4f9248644fc06996d9ea7ea4e950b; ct0=d39ff7dfbf373012ea78f82d9888d9ed' \
--compressed | python3 -c $'import json, sys\nfor x in json.load(sys.stdin):\n if x["in_reply_to_status_id"] == int(sys.argv[1]):\n print(x["full_text"].replace("\\n", "..").replace("&", "&"), ":"); exit()\nprint()' $1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment