For the complete documentation index, see llms.txt. This page is also available as Markdown.

Anonymous Access from Client Apps

Since you can't use the app management token from client apps for security reasons, Whisk provides an alternative mechanism to support server-less apps. Client application can request short-lived token to access API and keep reference for user.

If you need the token for browser applications, you must provide a list of domains for whitelisting.

Sample Request and Response

curl "https://login.whisk.com/auth/anonymous/create" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{
       "clientId": "<YOUR-APP-ID>"
      }'

Last updated

Was this helpful?