I am making an atlassian Forge app using custom UI. I want to embed an iframe. But it shows error “This content is blocked. Contact the site owner to fix the issue.”
This is my manifest permission:
permissions:
external:
images:
- 'https://i.ibb.co/Jc5YTXN/aptean.png'
fetch:
backend:
- 'https://www.youtube.com'
content:
styles:
- 'unsafe-inline'
And this is how i am embedding the iframe:
<iframe style={{margin:'0px',width:'100%',height:'100%'}} src='https://www.youtube.com/watch?v=X1Jysr-K1DQ'></iframe>
what is wrong? I am a newbie. Please help.