Applications
OIDC relying parties on the cloud issuer. Sign in with a passkey to create and manage clients.
Your applications
Credentials are created on 0trust.cloud. Client secret is shown once at create time.
No applications yet. Create one to get client_id and client_secret.
SDK quickstart
After you create an app, paste client_id into env and run one of these.
go get github.com/0TrustCloud/otrust-go export OIDC_ISSUER=https://0trust.cloud export OIDC_CLIENT_ID=your-client-id export OIDC_CLIENT_SECRET=your-secret export OIDC_REDIRECT_URI=http://localhost:3000/callback // see /docs/libraries#go for full example
npm install @0trust/otrust-js export OIDC_ISSUER=https://0trust.cloud export OIDC_CLIENT_ID=your-client-id export OIDC_CLIENT_SECRET=your-secret export OIDC_REDIRECT_URI=http://localhost:3000/callback // see /docs/libraries#javascript
pip install otrust export OIDC_ISSUER=https://0trust.cloud export OIDC_CLIENT_ID=your-client-id export OIDC_CLIENT_SECRET=your-secret export OIDC_REDIRECT_URI=http://localhost:3000/callback # see /docs/libraries#python
export OIDC_ISSUER=https://0trust.cloud export OIDC_CLIENT_ID= export OIDC_CLIENT_SECRET= export OIDC_REDIRECT_URI=http://localhost:3000/callback