function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Scott W LeonardScott W Leonard 

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:
 
"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?