You are here:
Configure Aura Guest User Access
Create a Visualforce page for your Aura Service Catalog Site so guest users have access to view and request catalog items.
Required Editions
| View supported editions. |
Before you begin, ensure you’ve set up guest users for Service Catalog. See Set Up Service Catalog Guest Users.
Step I: Create a Visualforce Page
Use a Visualforce page to present your catalog items to guest users in your Service Catalog site.
- From Setup, in the Quick Find box, enter and select Visualforce Pages.
- From the Visualforce Pages Setup page, Click New.
- For the Label field, enter a name.
- Enable Available for Lightning Experience, Experience Builder sites, and the mobile app.
-
From the Visualforce Markup tab, enter this code.
<apex:page showHeader="false" sidebar="false"> <apex:includeLightning /> <div id="item" /> <script> $Lightning.use("runtime_service_servicecatalog:serviceCatalogLightningOut", function() { $Lightning.createComponent("runtime_service_servicecatalog:catalogItem", {itemApiName: 'item_1708593530216_ItemFlow1'}, "item", function(cmp) { console.log("Item runner created"); // do some stuff } ); }); </script> </apex:page> - Save your work.
Step II: Set Your Site Access Setting
Grant your guest users access to the Visualforce page.
- From Experience Workspaces, in Administration, enable Let guest users view asset files, library files, and CMS content available to the site.
- From Experience Builder, in Settings, click the name of your guest user profile.
- From the guest user profile Setup page, select the Enabled Visualforce Page Access quick action, and then click Edit.
- Add Visualforce page you created to Enable Visualforce Pages
- Save your work.
Did this article solve your issue?
Let us know so we can improve!



