OAuth / OIDC Sign-in
PipesHub can accept sign-ins from any identity provider that speaks OAuth 2.0 or OpenID Connect. Use this when your provider is not one of the ones with a dedicated page — Okta, Auth0, Keycloak, Authentik, Ping, and self-hosted providers all work through this method. If you use Google or Microsoft, configure those directly instead: Google, Microsoft / Azure AD. They need less setup.How it works
- Someone selects your provider’s button on the PipesHub sign-in page.
- PipesHub sends them to your provider’s authorisation URL.
- They sign in there and approve the request.
- Your provider redirects back to PipesHub with a code, which PipesHub exchanges for a token.
- PipesHub reads their identity from the user info endpoint and signs them in.
Before you start
You need administrator access to both PipesHub and your identity provider. Decide first whether people without a PipesHub account should be able to create one by signing in. That is controlled by Enable JIT provisioning, described below, and it is the single most important choice on this page.Step 1: Register PipesHub with your provider
Create an application (your provider may call it a client, an app integration, or a relying party) and set its redirect URI to:your-pipeshub-domain with the address people use to reach PipesHub — the same value as FRONTEND_PUBLIC_URL in your .env.
Then note these values from your provider, which you will need in the next step:
- Client ID and client secret
- Authorization URL
- Token endpoint
- User info endpoint
https://your-provider/.well-known/openid-configuration. Fetching that document is usually quicker than hunting through the console:
Step 2: Configure PipesHub
Go to Workspace settings → Authentication and add the OAuth method.Provider Name, Client ID, Client Secret, Authorization URL, Token Endpoint and
User Info Endpoint are all required. Scope and JIT provisioning are optional.PipesHub uses a confidential client: the authorisation code is exchanged for a
token server-side using the client secret, so a public client with PKCE and no
secret will not work here.
Just-in-time provisioning
JIT provisioning is on by default for this method. With it on, anyone who can authenticate at your identity provider gets a PipesHub account the first time they sign in, without an invitation. Turn JIT on when your identity provider already contains exactly the people who should have access. Turn it off when access to PipesHub should be narrower than access to the provider.Step 3: Test before you rely on it
- Save the configuration.
- Open PipesHub in a private browsing window so you are not signed in.
- Select your provider’s button and complete sign-in.
- Confirm you land in PipesHub, and check that the account was created or matched as you intended.
Troubleshooting
redirect_uri_mismatch. The redirect URI registered with your provider does not exactly match the one PipesHub uses. It must match on scheme, host, port and path. http versus https and a trailing slash both count as a mismatch.
“Account not found. Please contact your administrator.” Sign-in worked, but no PipesHub account matches and JIT provisioning is off. Either invite the person first, or turn JIT on if that suits your access model.
Sign-in succeeds and then returns to the login page. PipesHub could not read an identity from the user info endpoint. Check that the endpoint is correct and that your scope includes openid email profile, or whatever your provider requires to return an email address.
The button does not appear. The method is configured but not enabled for the organisation. Check Workspace settings → Authentication and confirm OAuth is in the list of allowed methods.