Securing Web Actions
By default, a web action can be invoked by anyone knowing the action’s URL. If you want to restrict the access, you either use Basic Authentication or you build your own authentication layer.
Basic Authentication
Here is how you can enable Basic Authentication for a web action:
Copied to your clipboard// create a web action with Basic Authentication onaio rt:action:create my-secure-web-action main.js --web true --web-secure this-is-the-secret-hash
or
Copied to your clipboard// update an existing web action to enable Basic Authenticationn or change the secretaio rt:action:update my-secure-web-action main.js --web true --web-secure this-is-the-secret-hash
Once you’ve enabled Basic Authentication, you’ll have to pass X-Require-Wisk-Auth header, and the secret you set, when invoking the web action. Assuming that your web action is created in the default package, this is how you’ll invoke it:
Copied to your clipboardcurl -X GET -H "X-Require-Whisk-Auth: <this-is-the-secret-hash>" https://[your-namespaces].adobeioruntime.net/api/v1/web/default/my-secure-web-action
If you fail in adding the authentication header or the secret is wrong, you will get an error:
Copied to your clipboard{"error": "Authentication is possible but has failed or not yet been provided.","code": "OWGYkWwCUT7Ta6hWpfZWTQqRsfvcFTku"}
Oauth (using the Adobe Identity Management System)
Here is how you can enable IMS Authentication for a web action:
Copied to your clipboard// create a web action with Require Validation onaio rt:action:create my-requir-validation-web-action main.js --web true -a require-gw-validation true
or
Copied to your clipboard// update an existing web action to enable Require Validationaio rt:action:update my-require-validation-web-action main.js --web true -a require-gw-validation true
To interact with the action, it's necessary to set up a security configuration in your Swagger API route for that action. Detailed instructions on how to do this can be found in the documentation titled "Securing the API Endpoints.".
Non Web Actions
If your action is not a web action, you can still use your namespace credentials, base64 encoded, to call any of the actions in your namespace, as follows:
Copied to your clipboardcurl -X POST -H "Authorization: Basic <base64-namepsace-auth>" https://[your-namespaces].adobeioruntime.net/api/v1/default/my-secure-action
Cookies
The use of cookies directly from web actions on Runtime is discouraged. The reason for this is that, due to the shared nature of the infrastructure, it is not possible to completely segregate cookies between namespaces. It is okay to use the runtime domain for testing, but any cookie set directly by the runtime domain must be considered compromised.
To alleviate this, you can set up a forwarding proxy with a correct and valid second-level domain and send those requests along to the actual runtime domain. Inside your function, you can then implement an approve list or some shared secret to ensure that people attempting to access the functions directly are denied. Adobe also provides Container Native Applications, which can do much of this work for you.
For a fuller discussion of this topic you can read Heroku’s discussion of their cookie policy.