>>/10916/
> https://twibooru.org/3326201 ,, explicit, carrot cake, cup cake, anthro, breasts, image, jpeg, nudity, penis ,, https://ipfs.desmos.network/ipfs/bafybeiblfbps754ng4rks6khs4sgurlohf4lqbpugqktemupgh2u27y6aa/SEC/Cakes Fucking/02.jpg
4 hours later and all of the view+download links are still 404. Disappointing. Will try like 3 more images and see what happens.

> RPC API: no GET
So, simple "3rd party" wrapper programs can be created. Like this:
$ cat cgi-bin/ipfsapi/v0/files/stat
#!/bin/bash
echo "Content-type: application/json"
echo
arg="$(echo -n "$REQUEST_URI" | sed "s/.*?arg=//g")"
curl -X POST "http://10.0.0.222:5001/api/v0/files/stat?arg=$arg"
$ cat cgi-bin/ipfsapi/v0/routing/provide
#!/bin/bash
echo "Content-type: application/json"
echo
arg="$(echo -n "$REQUEST_URI" | sed "s/.*?arg=//g")"
curl -X POST "http://10.0.0.222:5001/api/v0/routing/provide?arg=$arg"
$ cat cgi-bin/ipfsapi/v0/routing/provider1
#!/bin/bash
echo "Content-type: application/json"
echo
arg="$(echo -n "$REQUEST_URI" | sed "s/.*?arg=//g")"
curl -X POST "http://10.0.0.222:5001/api/v0/routing/provide?arg=$arg&recursive=true"
$ # provide JSON shows a lot, so add this: 2>&1 >/dev/null; echo Done.Maybe someone already recreated all of that API for CGI, if there's no easy way to get native GET requests + useful responses working.