3 Antworten
HI Tom,I am not sure if there is an easier way to call the canvas app.The article http://www.worldofsalesforce.com/2017/05/displaying-external-web-app-using-Salesforce-Canvas.html gives a good insight into how you can create a Canvas in the connected app Also, see https://developer.salesforce.com/docs/atlas.en-us.platform_connect.meta/platform_connect/quick_start_create_canvas_app.htmhttps://success.salesforce.com/ideaView?id=0873A000000E4RpQAK I was able to create a Canvas app this way. Called the canvas from a VF page using below code
Added this VF page by drag and drop in community builder. See the below image of canvas added in my community<apex:page >
<apex:canvasApp developerName="Hello_World"
height="1000px" width="800px"/>
</apex:page>
Note: There seems to be a limitation of the usage of the canvas app with the community guest user. Please consider before implementation.See https://salesforce.stackexchange.com/questions/203768/is-it-possible-to-use-a-canvas-app-with-the-community-guest-userHope this helps you. Please mark this answer as best so that others facing the same issue will find this information useful. Thank you