# loaderInfo.parameters when URLRequestMethod.POST

**URL:** https://forum.kirupa.com/t/loaderinfo-parameters-when-urlrequestmethod-post/295493
**Category:** flash
**Created:** [August 31, 2009, 12:51pm UTC](https://forum.kirupa.com/t/loaderinfo-parameters-when-urlrequestmethod-post/295493 "2009-08-31T12:51:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![omnivibe](https://avatars.discourse-cdn.com/v4/letter/o/dbc845/32.png) [@omnivibe](https://forum.kirupa.com/u/omnivibe)
#### Post date: [August 31, 2009, 12:51pm UTC](https://forum.kirupa.com/t/loaderinfo-parameters-when-urlrequestmethod-post/295493/1 "2009-08-31T12:51:47Z")

</div>

I have something like the following code:

```auto

var req:URLRequest = new URLRequest('child.swf');
var vars:URLVariables = new URLVariables();
vars.foo = 'bar';
vars.hello = 'world';

req.data = vars;
req.method = URLRequestMethod.GET;

ldr = new Loader();
ldr.load(req);

```

With this, I am able to access the vars from child.swf by looking at root.loaderInfo.parameters…

but when I change URLRequestMethod.GET to URLRequestMethod.POST, I’m unable to. Any idea why, and if there’s a workaround? (sniffing via Charles makes the data look pretty much the same to me…)
