Hello,
I'm configuring the API Gateway and I had a question regarding connectivity with endpoints which contain a URL to authenticate under 1 login method and then a token in the others.
By example : I have an API that contains an endpoint to obtain a token, example: 192.168.1.1/.../auth and you log in using basic authentication (user+pw).
This returns a bearer token, which must then be used as a bearer token in the requests of the other methods, for example : http://192.168.1.1/v1/get
Can I use the token obtained in the first POST to make requests to the methods?
I was thinking about integrating the initial request for the token into the ION flows but I don't know how to then pass it as a parameter to the second request.
thanks.