I have not been able to find much in the way of examples for Requests.jl
beyond what's in the README. My issue is with this
site: https://www.space-track.org/documentation#/howto. I can use
post("https://www.space-track.org/auth/login",data="identity=username&password=password"),
and this seemingly works (I get "Response(200 OK, 10 headers, 10676 bytes
in body)").
When I try to run a query with get(...), however, I get "Response(401
Unauthorized, 10 headers, 94 bytes in body)". I've tried different things,
including get("<query URL>") and get("<query url>"; cookies =
resp.cookies), where resp is the output of the previous post() command.
What do I need to do here?
Thanks,
Chris