Securely authenticate API requests and protect your team’s data
process.env.FORGE_SECRET
.teamId
(used as the username in authentication) is available in your team’s settings.teamId
and secret in a server-side application to authenticate API requests:
Authorization
header by combining the teamId
and secret as teamId:secret
, then base64 encode it.
Example in Node.js: