Integrate Finch Connect Into Your Application
Before being able to pull data from an employment provider through Finch, your customer needs to consent to the data being transferred. Without consent, Finch is not authorized to pull the data on behalf of the customer. Finch Connect is our user-facing product to help you obtain customer consent, and it is a prerequisite step before calling Finch APIs.
This section requires that you have registered your application with Finch by completing the Create a Finch Developer Account section.
This setup process will enable our default versions of Finch Connect. Later in this implementation guide, we’ll walk you though tips and tricks to help you increase employer adoption in Finch Connect.
Configure Finch Connect
Every flow requires you to create a Finch Connect session with your client_id
and client_secret
and is configurable with the following parameters:
Parameter | Required | Description |
---|---|---|
customer_id | true | A unique identifier for your customer. |
customer_name | true | The name of your customer. |
customer_email | false | The email associated to your customer. |
products | true | A space-separated list of permissions your application is requesting access to. See Product Permissions for a list of valid permissions. Please note that SSN is its own product scope. |
redirect_uri | redirect only | The URI your user is redirected to after successfully granting your application access to their system. This value must match one of your application’s configured redirect URIs. |
state | optional | An optional value included as a query parameter in the response back to your application. This value is often used to identify a user and/or prevent cross-site request forgery. |
integration.provider | optional | An optional parameter that allows you to bypass the provider selection screen by providing a valid provider_id from our list of Providers. |
integration.auth_method | optional | An optional parameter that allows you to bypass the provider selection screen by providing a valid auth_method for a provider from our list of Providers. |
sandbox | false | An optional value that allows users to switch on sandbox mode to connect to test environments. Allowed values: finch and provider . For more information, read our testing guide. |
manual | false | An optional value which when set to true displays both Automated and Assisted Providers on the selection screen. |
minutes_to_expire | false | An optional value which allows you to set the number of minutes the connect session should be valid for. Defaults to 14 days. |
connection_id | reauthentication only | A unique identifier created when an employer successfully authenticates through Finch Connect. This ID is only used for reauthentication. You will not have a connection_id for the first call. For all reauthentication flows you should include the connection_id to avoid duplicate connections being created. |
Choose your preferred authentication flow
Finch provides two options to set up Finch Connect. The redirect flow is helpful in instances where you do not have a user interface (such as a link in an email) or you prefer to redirect in order to not host the authorization experience yourself. For the embedded flow, Finch provides several front-end SDKs for easy implementation. Before setting up your preferred Finch Connect flow, you will need to first create a Connect session.
Create a Connect Session
In your backend application, make a call to POST /connect/sessions to create a connect session for your customer. When creating the connect session, include your internal customer_id for your customer, the customer’s name and any of the optional fields listed below.
If you call POST /connect/sessions
and you already have a connection with Finch from the customer_id you pass in, Finch will prompt you to re-authenticate instead and return the following error:
Launch Finch Connect
Using the response of the API call above, either launch Finch Connect by passing the session_id
to the Finch Connect SDK or direct your customer to the provided URL.
Redirect Flow
In this method of integrating Finch Connect, your application redirects your user’s browser to Finch Connect hosted by Finch on https://connect.tryfinch.com
. After a successful connection, Finch Connect will redirect your user back to a URI you specified (redirect_uri
) with a short-lived authorization code
. The redirect_uri
must be set in the Finch Developer Dashboard. Otherwise, the request will fail.
Navigate to the URL in connect_url
from the API response to initiate the redirect flow.
The redirect authorization flow consists of four steps:
- Open Finch Connect — Your application redirects your user’s browser to Finch Connect to initiate the authorization flow.
- Obtain consent — Finch Connect prompts your user to log in to their employment system and grant your application access to the permissions you are requesting.
- Retrieve the authorization code — If your user successfully connects and grants your application access to their system, Finch Connect will redirect their browser to a specified
redirect_uri
with a short-lived authorizationcode
. - Exchange the code for an access token — Before sending API requests, your application will exchange the short-lived code for a long-lived
access_token
that represents your application’s access to your user’s employment system.
Embedded Finch Connect
The Finch-provided SDKs embed the Finch Connect screen into your application. The user will remain entirely on your application throughout the process. When the onSuccess event is called by the SDK, simply pass the code to your internal callback endpoint as a query parameter.
NOTE: You should not include a redirect_uri if using the embedded flow. Because the entire flow is already self-contained in your app, no redirect is necessary.
-
React SDK: If you’re using React as your frontend framework, use the React SDK. Import the Finch Connect component and include it in your application. You can find examples and usage instructions in the SDK documentation or continue to follow this tutorial. -
npm install --save @tryfinch/react-connect
-yarn add @tryfinch/react-connect
-
JavaScript SDK: If you’re using a different frontend framework or vanilla JavaScript, use the pure JavaScript SDK. Include the Finch Connect library in your application, either by adding a script tag to your HTML file or by importing it as a module.
-
<script src="https://prod-cdn.tryfinch.com/v1/connect.js"></script>
Since Finch Connect is an iFrame that requires interactivity, the HTML page that is loading Finch Connect must be served from a server. If the page is hosted statically, Finch Connect will not work properly.
React
Javascript
Implement the authentication flow
Add a button or a link in your application that triggers the Finch Connect flow. Users will click this button or link to start the authentication process.
React
Javascript
Listen for events
Finch Connect emits events that your application should listen for to handle the different stages of the authentication process. The two most important events are onSuccess
and onError
.
onSuccess
: This event is triggered when the user completes the authentication process. It returns an authorizationcode
that you will use to obtain anaccess_token
in the next step. Pass this authorizationcode
securely and temporarily to the access token exchange function.onError
: This event is triggered if there’s an issue during the authentication process. Your application should handle this error gracefully, either by displaying an error message to the user or retrying the authentication flow.onClose
: This event is triggered when a user exits the Finch Connect model, either by closing the modal or clicking outside the modal.
Checkpoint + Next Step
After completing this step, you will have successfully integrated Finch Connect into your application’s front end. This will enable users to authenticate with their employment systems, providing your application with the necessary authorization to Retrieve An Access Token in the next section.
Learn more
Was this page helpful?