Asking tech people who know more about this sort of thing than I do (which admittedly isn't hard) ...
From the command line I want to access this page:
https://mathstodon.xyz/sidekiq/queues
I have a username and password that lets me login via the web interface and look at it through a browser, but I can't work out the magical CLI incantation.
Help?
PS: Assume I know nothing about this sort of thing.
@ColinTheMathmo Easiest I guess easiest would be to pick an API library in a language you like, then read their docs
Maybe one of these https://docs.joinmastodon.org/client/libraries/
Possibly easier would be to steal the session cookie or auth token or whatever (you can figure it out with dev tools) and then hook that into curl or whatever
@ColinTheMathmo Actually, try "copy as curl". Dev tools > network tab > right click request you want > copy > copy as curl
That should give you a curl command
@applejack Perfect !!!
That's fabulous ... thank you!