Skip to content

Instantly share code, notes, and snippets.

@rygramer
Created January 8, 2022 01:07
Show Gist options
  • Save rygramer/729a26a0edf8ccc2677210611a535a6e to your computer and use it in GitHub Desktop.
Save rygramer/729a26a0edf8ccc2677210611a535a6e to your computer and use it in GitHub Desktop.
Aura to Embed a Flow in an External Website - code for your website
<script src="https://YOUR-SALESFORCE-SITE-URL.com/lightning/lightning.out.js"></script>
<div id="lightningLocator"></div>
<script>
$Lightning.use("c:embedFlowInExternalWebsiteApp",
function() {
$Lightning.createComponent(
"c:embedFlowInExternalWebsite",
{ },
"lightningLocator",
function(cmp) {}
);
},
'https://YOUR-SALESFORCE-SITE-URL.com'
);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment