mirror of https://github.com/LemmyNet/lemmy.git
12 lines
528 B
Bash
Executable File
12 lines
528 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
curl -H "Accept: application/activity+json" https://lemmy.ml/u/nutomic | jq \
|
|
> crates/apub/assets/lemmy-person.json
|
|
curl -H "Accept: application/activity+json" https://lemmy.ml/c/announcements | jq \
|
|
> crates/apub/assets/lemmy-community.json
|
|
curl -H "Accept: application/activity+json" https://lemmy.ml/post/55143 | jq \
|
|
> crates/apub/assets/lemmy-post.json
|
|
curl -H "Accept: application/activity+json" https://queer.hacktivis.me/users/lanodan | jq \
|
|
> crates/apub/assets/pleroma-person.json
|