Authenticate as an App
You can authenticate as an ICR App in order to generate an installation access token or manage your app.
About Authenticating as an ICR App
Using a JSON Web Token (JWT) to Authenticate as an ICR App
curl --request GET \
--url "https://api.carbonregistry.com/app/installations" \
--header "Authorization: Bearer YOUR_JWT"await axios.get(
`https://api.carbonregistry/app/installations`,
{
headers: {
Authorization: `Bearer ${YOUR_JWT}`,
},
},
)Last updated