I have a .Net Core application built with ABP.IO using the basic CLI. It exposes a swagger interface for basic user management and login etc. I can call any of the [Authorize]'d these end points from javascript once logged in or via Swagger OK. However this must be using some sort of authentication technique.
If I want to call the endpoints from curl or from another application how do I authenticate and get an access_token etc.?
I can call the login methods but they just return success on successful login. Is there a way to get an auth token or something to be able to then make calls to end points that require authentication.
This seems like a very natural thing to do