Forum Discussion
idelix
5 years agoFrequent Visitor
Change default share button link on published to web reports
I need to change default share link on reports which were published using "publish to web option" currently it points to link "https://app.powerbi.com/view?..." I want to change it to my website link...
agnes_ee
4 years agoFrequent Visitor
You can add referrerpolicy Attribute to the iframe: https://www.w3schools.com/tags/att_iframe_referrerpolicy.asp.
For example, to link exact url of the page you can use “same-origin” like this:
<iframe referrerpolicy="same-origin" width="600" height="373.5" src="https://..." frameborder="0" allowFullScreen="true"></iframe>