You need to sign in to do that
Don't have an account?

Empty record sent in canvas SignedRequest after 10/20/17
I have a Canvas app that is available to add to an Account layout. Prior to 10/20/17, the POSTed SignedRequest included a Record in the Context. Now that Record is available, but is an empty JSON object:
My canvas app lives in a Visualforce page
Anybody know why I no longer get any record data?
"context": { "user": { ... }, "links": { ... }, "application": { ... }, "organization": { ... }, "environment": { ... }, "parameters": {}, "record": {}, "version": { "season": "WINTER", "api": "41.0" } } }
My canvas app lives in a Visualforce page
<apex:page standardController="Account"> <apex:canvasApp applicationName="MyApplication" entityFields="*" height="425px" width="100%" /> </apex:page>
Anybody know why I no longer get any record data?