This snippet shows you how to embed your instagram page onto an HTML website! To see the webpage that displays the embed click run then open the link in a new tab.
let bodyHtml = `
Instagram Embed Example
Instagram Embed Example
Let's say you are a famous instagram model, you want to add a link to your instagram page in your html website...
Well you are in luck!
To make the embed is very easy! Load up instagram, open the page you want to embed, click the ..., You will now be given 5 options, Block, report, restrict, embed, and cancel. Click Embed and then click copy code.
Now paste that code into your code and bam! You're done!
`;
return {
statusCode: 200,
headers: {
'Content-Type': 'text/html',
},
body: bodyHtml,
};