Iron Router server-side route access to POST data

Hi,

Any ideas why this.request.body is empty (I’m using Iron Router):

Router.route( "/inbound", { name: 'inbound', where: 'server' } )
    .post( function() {
        console.log(this.request.body);
        console.log(this.request.query);
    }
);

I sorted my problem, Iron Router doesn’t play nicely with form-data encoded POST data, x-www-form-urlencoded is fine. I found a solution on this GitHub issue using an NPM module (Busboy):