Awesome, thank you so much for your response.
I am pretty new to this but would there be any way to just do manually from the command line whatever the browser is doing, to get that token?
All I know is when I load the web page in the browser and enter my user credentials into the form and press "log in" and enter the landing page, that token is now somewhere inside my browser's dev tools.
But how did it get there?
What really happened when I entered those log in credentials?
The only way I have seen so far of authenticating from the command line is an HTTP POST request. Are all web page logins just POST requests, i.e. you could send that log in information in a URL string instead?
Does that mean that the token I received must be somewhere in the HTML response of the web page sent after I logged in?
Thanks very much.