OpenRIMS-RPM - Installation Part 2
Configuring Google Authentication
OpenRIMS uses OATH2[1] to allow authenticate using Google login. For each deployment, the Google Authentication need to be configured separately.
The Google guide is available here for additional reference and detail:
https://developers.google.com/identity/sign-in/web/sign-in and https://developers.google.com/adwords/api/docs/guides/authentication
Here are the steps to perform:
- Use a Google account to access the Google Cloud Console
- Create a Project unless you already have one
- Access APIs & Services for that Project
- Navigate to Credentials
- Create Oauth Client ID
- Choose Web Application
- Add Authorized Redirection URI e.g.
https://openrims.msh.org/login/oauth2/code/google
- After clicking Create a Client Secret and a Client ID will be created. You need both for the below configuration of OpenRIMS.
After configuration it will be necessary to copy Client ID and Client secret to the application.properties
## OATH2
spring.security.oauth2.client.registration.google.client-id=client_id
spring.security.oauth2.client.registration.google.client-secret=client_secret
Go Back to Part 1: OpenRIMS - Installation Part 1 | Move Forward to Part 3: OpenRIMS - Installation Part 3 |
---|