Quick and dirty script to download all messages in a groupme group.
Requires deno.
cp .env.example .env
Get a GroupMe access token and stick it in .env
.
Additionally, find the ID of the group you're trying to scrape. If https://groupme.com/join_group/00000000/xxxxxxxx
is the group's invite link, 00000000
is the group ID.
deno install --allow-net --allow-read -n groupme-dl index.ts
Download the messages sent in the group with group ID 00000000
to the-group.json
:
groupme-dl 00000000 > the-group.json
deno run --allow-net --allow-read index.ts 00000000 > the-group.json