Make http request without redirections

Greetings, I have a question and I was waiting to see if you could solve it.
I need to make a HTTP call of type GET. This call takes me to a URL where I can get a token to validate, the problem is the request directly redirects to the final URL, so I can not see the url in the middle and extract the code.
EXAMPLE:
Request (URL_A) | Here is the token and i never see this (URL_B response 307) | Final URL_C (response 200)

Is it possible what I am trying to do in the http module of unreal? Or should I use an external library? I have seen that WinHTTP has the ability to deny redirects, and as a last option is it possible to use it?

Thank you very much