OAuth
Oauth authentication is the protocol that allow users to login to your application using external provider credentials, such as Google, Auth0 or Okta.
Pre-requisites
In order to use OAuth make sure you have the following information from the external provider that will be used.
Client ID;
Secret Key;
Subdomain.
In addition, apps need to be running version BetterForms 2.0.12+ (bf-staging, as of May 2023).
Setting up
Add domain to allowed callback URLs
Go to provider's admin console and add your domain as an Allowed Callback URLs, as following.
Save Credentials
Select the app where OAuth will be added, click on the ellipsis besides the App name and select App Settings
.
Under Authentication
, toggle the button Enable 3rd Party Authentication
.
Select one of the 3 providers from the dropdown menu, enter Client ID, Client Secret and Subdomain (Scope still not implemented).
Whenever an information from above is changed, the Client Secret always need to be reinserted.
Subdomain values vary from provider to provider:
No subdomain value is needed for Google, and Auth0 domain doesn't always have a region in it.
Helper File
A new field oauthId
needs to be created in the Users
table.
Remember to add the ouahtId field to the layout.
Before Registration Hook - Business File
A before registration hook script can be added to the business file if you want to control whether a user is allowed to register or not.
The script needs to be called onBeforeRegistration
, and by setting createUser
to true on $$BF_Model
will allow users to register to your app via OAuth.
If onBeforeRegistration
hook script is not created and/or createUser
not set to true, users will not be allowed to register via OAuth.
Updating your Common hooks to support `onBeforeRegistration`
if your integration is older, you may not have a onBeforeRegistration
hook installed.
Update the BF Common Dispatch Script
Users registered via OAuth workflow are automatically verified, so there’s no need to send verification emails.
New Callback Landing Page
This page is a new page that needs to be added to the app. Once the user is authenticated with the external user, the request will be redirected to this page, where the JWT token will be generated by calling the action presented below.
Navigation slug
The callback lading page must use auth/oauth
as its navigation slug.
Add action to onFormLoad
In your new callback landing page, add the following actions to your onFormLoad:
If the external provider or internal code returns an error, the error will return as a query parameter errorMessage
, be added to default model.authMessage
key, as well as a console log message.
Note for early OAuth users: the OAuth action used to be oauthLoginHook
, and as shown above, it changed to authLoginOauth
. However, both actions will be supported at the moment.
Login Page
Button or Link
Add a button or link that redirects to one the following paths
For example, if we were to add Google to our app:
Redirects can be done by adding a redirect query param to the URL.
Last updated