CotJS SDK and LinkageForm
In PDA environment, CotJS SDK is a library which provides authentication functions using ForgeRock JavaScript SDK. It also includes linkage functions which communicates with the middleware to check linkage status and load LinkageForm. The Linkage Form is used to link user’s accounts of the services the City offer to the PDA account. This Linkage Form will be a Micro-Frontend implemented with the new React based framework.
Authorization and Authentication
The authorization begins when a user clicks a login button in the landing page.
auth.login
redirect the user to the ForgeRock login page.Once the user enters user name and password and authenticated, ForgeRock will redirect the user back to the client with root based callback url. The URL includes authorization
code
andstate
which will be used to exchange for access and id tokens viaauth.authorize
.
Linkage
Once the user successfully authenticated, the client needs to check if the user has linked the PDA account to the client service using linkage APIs
Making a API call to the middleware to check linkage status: it should pass access token in the request
If already linked
The middleware will return “yes”
It will navigate to main page. The next route will be passed to the linkage library
If not linked yet
The middleware will return “no” along with form definition in JSON
Navigate to linkage route and the linkage lib will load the LinkageForm MFE and inject to the client’s view
After a user fills in the form, it will submit to the middleware
Middleware sends the data to AUX
LinkageForm shows confirmation message
The user clicks OK button to finish the linkage
It will navigate to next page. The next route will be passed to linkage lib