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
abhik dey 1abhik dey 1 

Is it possible to capture the canvas signed request in salesforce before it hits the Canvas end point?

Is it possible to capture the signed request in salesforce before it hits the Canvas end point? I have the canvas implemented in VF page and I wanted to capture the signed request from salesforce with which it hits the canvas end point URL.

Any Ideas how to capture the signed request?
Daniel BallingerDaniel Ballinger
I don't think you can capture the request in any meaningful way. You might be able to extract the POST data from a Event Monitoring log, but it would be significantly after the fact.

Maybe relay the request through a custom Visualforce page on the orginating org? I'd put together a similar example in Can I embed a Salesforce app, via Canvas, in another org? (http://salesforce.stackexchange.com/q/41615/102) You could use one org rather than two. Then on the target VF page you could forward them on to the actual target URL.
abhik dey 1abhik dey 1
ohh ok.. Thanks