Auth0
Integrate OwnID password free authentication into your Auth0 flow
By integrating Auth0 with OwnID, you can implement the full set of OwnID features to simplify and streamline your user login experience.
How it Works
OwnID supports integration with Auth0 through our pre-built Auth0 Connector.
Configuration on the Auth0 side happens through your Auth0 Dashboard. Ensure you have an account with sufficient access in Auth0.
Complete these five basic steps to integrate OwnID with Auth0:
Step 1 - Get API Explorer Credentials.
Step 2 - Create the OwnID App.
Step 3 - Add OwnID as an Auth0 Social Connection.
Step 4 - Frontend Integration.
Step 1 - Get API Explorer Credentials.
-
In your Auth0 Dashboard go to Applications -> Applications -> API Explorer Application Figure 1. API Explorer Application in Auth0 Dashboard
-
If this app is not listed for you, you’d have to quickly create it:
Go to Applications -> APIs -> Auth0 Management API, select tab API Explorer and click Create & Authorize API Explorer Application After that you should see API Explorer Application in the list of applications. Figure 2. Create & Authorize API Explorer Application
-
In API Explorer Application go to Settings tab and copy
Client ID
and Client Secret
values. We will use them in the next step. Figure 3. API Explorer Credentials
Securing User’s Personal Data
OwnID does not store or process any user data. Users’ public keys and device information are stored on your platform.
Private keys are kept exclusively on the user’s device and are never transmitted elsewhere.
Step 2 - Create the OwnID App
We’ll create a new OwnID app using the Auth0 Connector.
An OwnID App is what connects the existing identity provider used by your website with the OwnID widget you insert on the front end.
OwnID widgetEach of your OwnID Apps acts as the central point of configuration for each of your integrations. These no-code Apps are created, hosted, and maintained entirely within the OwnID Console environment.
When you create an App, it’s assigned a unique appId
automatically. Use that appId
in OwnID SDK interaction from your website’s front end.
To Create an OwnID App
-
Login to the OwnID Console (or create your account).
-
Click +Create Application from the Apps screen.
-
Enter a name for your application in the App name field.
-
From the Choose your integration panel, select the Okta tile.
-
Click Next.
-
Click Explore my App on the “Congratulations” popup.
Set Auth0 Integration Parameters
In your Auth0 integration page, fill in the following information:
-
In Auth0 Settings, set the Site Domain - e.g: https://acme.auth0.com
-
In Auth0 Settings, set the Client ID value you created above.
-
In Auth0 Settings, skip the Client Secret value you created above. Figure 4. Auth0 settings
-
In OpenID Connect settings, set Redirect URIs by adding one or more Auth0 redirect URIs, typically in the format
https://your-auth-domain.com/login/callback
. -
Click Save Changes.
The other values in this page will be used in the next step.
Add OwnID as an Auth0 Social Connection.
Create a new social connection in Auth0.
-
In your Auth0 Dashboard, go to Authentication -> Social.
-
Click + Create Connection. Figure 5. Create connection
-
Scroll all the way to the bottom of the widgets list and select
Create Custom
. Figure 6. Create custom -
In the General section, configure the following settings:
- Name:
OwnID
- Authorization URL: The value from the OwnID application created in the previous step.
- Token URL: The value from the OwnID application created in the previous step.
- Scope:
openid profile email
- Separate scopes using a space: Enabled
- Client ID: The value from the OwnID application created in the previous step.
- Client Secret: The value from the OwnID application created in the previous step.
- Fetch User Profile Script: Use the script provided below.
- Custom Headers: Leave empty.
In the Advanced section, disable Sync user profile attributes at each login.
- Name:
-
Click Create.
-
Once created, go to the Applications -> Applications page, choose the application you want to integrate with OwnID.
-
In the Connections tab, under the Social section, make sure
ownid
is enabled. Figure 7. App connections
Step 5 - Frontend Integration
- In your custom login page HTML, add the following code snippet (in the
<body>
part). Make sure to fill in theappId
of your OwnID application you created in the previous steps.
- Add the following code snippet in addition.
Make sure to fill in the
app_client_id
of your Auth0 application. If you are not using the Auth0lock
api , you can remove thelock.on
part and just keep theownid("login", ...)
part. Make sure to call it after elements exist in the DOM.
- Other page modifications might be required, such as hiding the
Sign in with ownid
. You can add a css rule to completly hide it, for example:
Next Steps
Ready to deploy?
YES!
Take me to the Deployment Checklist
Was this page helpful?