I have a flow that currently saves images to a SharePoint document library. I want to expand on this and have it to get the inner html of a website.
using the HTTP get command I am navigating to an inhouse built page (available on the wider internet) to get some info.
The response I get through a browser is this
<html><head></head><body>A140400|T10|24/10/18</body></html>
the plan is I would return this data into the power app that has triggered this flow.
however the response I'm getting in the flow is
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/cds/AutoOrderImport?O=A140400">here</a>.</h2>
</body></html>
I don't like the look of the href at this point but it is correct on the inputs panel as the above response is in the outputs panel.

I believe I'm missing something obvious so hoping someone can just point that out.