I would like to call a swf file which takes some parameters, but I do not want those parameters to visible on the client (let's say a secret authentication token or something like that).
I thought I would write a simple PHP proxy script like this:
header('Content-type: application/x-shockwave-flash');
readfile('http://path/to/swf/file.swf?here=are&some=parameters');
And then simply to do
<embed src="/path/to/php/proxy.php'/>
But the flash parameters don't seem to be making it to the swf. Is something like this possible?