I\'m using Corona SDK to post data to my C# server:
headers[\"Content-Type\"] = \"application/x-www-form-urlencoded\" headers[\"Accept-Language\"] = \"en-US\" l
The post data is in
this.Request.Body
If you have suitable type you can deserialize your data to it using model binding:
var x = this.Bind();