I'm having trouble with my webpage only reading the Iframe tag. It's sending the content correctly according to Postman.
Postman is giving me this content:
"Conteudo": "<p>Test iframe:</p>\n\n<p><iframe frameborder=\"0\" height=\"300\" scrolling=\"no\" src=\"https://www.express.co.uk/news/science/923166/space-news-supernova-birth-astronomy-victor-buso\" width=\"300\"></iframe></p>\n\n<p> </p>\n\n<p>Check it OUt</p>\n",
I'm not sure why there are backslashes in the HTML though.
When I try to display the same content on my console, I get this result:
<p>Test iframe:</p>
<p>
<iframe frameborder="0" height="300" scrolling="no" src="https://www.express.co.uk/news/science/923166/space-news-supernova-birth-astronomy-victor-buso" width="300"></iframe>
</p>
<p>Check it OUt</p>
However, when displaying it on HTML, I just see an empty element like this: https://i.sstatic.net/IpQHJ.png
I'm confused about why my navigator can't render the response in HTML. Any insights?
Thanks for your help!