Tagged in

API

Apache OpenWhisk
Apache OpenWhisk
Apache OpenWhisk is a serverless cloud platform that executes code in response to events
More information
Followers
1.4K
Elsewhere
More, on Medium

Using URL Paths in OpenWhisk Web Actions

Time for another quick OpenWhisk tip. As you know (or may know!), when you create an OpenWhisk web action, you can pass parameters via the query string or via a form post. So consider the following trivial action:

function main(args)

What’s new web actions?

A little over a month ago, I introduced web actions for creating serverless HTTP handlers with OpenWhisk.

Web actions allow one to run code in response to HTTP events, without deploying or managing their own servers. Web actions are built into the OpenWhisk…