I'm trying to display a iFrame with Looker SSO, I used looker_sso_tool to generate the Embed URL, and it shows the dashboard I want, however when I try to use the url with a localhost application it shows the error:
Refused to display 'https://xerpabr.looker.com/login' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
I also notice the requested URL from this tool has a Location Response of:
While in localhost it is:
I'm using the node_example of sso embed, just changing the return to display the iFrame, like so:
res.end("<iframe height=400 width=600 src=" + url + "> </iframe> ");
How can I solve that?