Worker secrets How do they work?
hello!
I have been trying to setup a token for my api using enviroment secrets for several hours now with little success
how do i access an enviroment secret in my typescript worker?
3 Replies
or is there a better way of api token management?
i have tried using kv before but decided against it
You access them the same way you would a normal environment variable
env.<Variable Name>
https://developers.cloudflare.com/workers/configuration/environment-variables/#add-environment-variables-via-wranglerCloudflare Docs
Environment variables · Cloudflare Workers docs
Environment variables are a type of binding that allow you to attach text strings or JSON values to your Worker
turns out that didn't work