I am working my way through using IBM Cloud Bluemix environment with their Kitura flavor of server side Swift implementation. Of course, key to this is the ability to make all sorts of HTTP requests So far I have been able to handle GET requests and POST requests with pure JSON body. I am stuck when it comes to form-data or application/x-www-form-urlencoded. From what I read, it appears that I should be using the Kitura-provided BodyParser class, but I'm afraid I am not even sure how to actually use it in code. I have mostly used the following very useful posts to make my way so far. From Rob Allen From Horea Porutiu From Kevin Hoyt
As far as i understand it now I will need to use the BodyParser and Router classes from Kitura, but it seems to me that htose are arlredy taken care of in IBM Cloud Function implementation of OpenWhisk + Kitura Swift... so I am not too sure now...
Any idea or pointer anyone ? Thanks