Hello!
I’ve got a rest endpoint that has provided us with a static bearer token. It is not the typical http auth where it is username+password in base64, nor a token from an authentication service were we can pull it from $Auth.response. It is just a text field.
So in every call, we put the header “Authorization : Bearer ”
Currently in our prototype, I’ve got this hard coded in the data source “common request headers” section. However, I’m wondering if there is a better way to store this for production where it can be encrypted. We use an Apex proxy, so if I understand correctly, this header won’t flow through the browser and reveal itself, so it should be safe from users (right?). However, it would be exposed to anyone who has the skuid builder or admin permission set.
Is there anywhere we can save this field in an encrypted field and merge it in at the data source (not page) layer?
Thanks!