GoMeddo allows you to sync Dimension records with Google calendars. This article explains how to connect your GoMeddo environment with your Google Calendar environment.
GoMeddo allows you to sync Dimension records with Google calendars.
Note |
---|
In order for the GoMeddo Google Calendar extension to work, you will need to setup and deploy My Domain to your users. |
...
Go to the Google API Console
Create a project for GoMeddo Google Workspace Integration
Go to Library in the API Console and make sure the GoMeddo project is selected
Search for Google Calendar API and enable it for this project
Go to Credentials in the API console and make sure the GoMeddo project is selected
Click Create Credentials and then Service Account
Go through the Service Account creation process
Go to the Service Account Detail page and enable Domain Wide Delegation
Copy the Email, you will need it in a later stage
Copy the Unique ID, you will need it in a later stage
Go to the Keys tab and generate a new key in the p12 format. Remember the password given to you by google Google and save the file
Note |
---|
The key file generated from this is required to connect the Salesforce environment to the Google Workspace environment. |
This key is in the wrong format to use in salesforce Salesforce, hence we first have to convert it. First rename Start by renaming the file you just downloaded to something more simple going forward we will assume , such as salesforce-gomeddo.p12
run Run the following command in the folder where the salesforce-gomeddo.p12 file is in:
Code Block |
---|
keytool -importkeystore -destkeystore salesforce-gomeddo.jks -srckeystore salesforce-gomeddo.p12 -srcstoretype pkcs12 -deststoretype JKS |
it wil then The system will prompt you for a new password: for the key file, use the same password as provided by google Google for the p12 file. it wil then ask you You will be then asked to confirm the password.
it wil then ask you for the password google provided with the p12 file.
After doing these steps you should now have a salesforce-gomeddo.jks file in the same directory.
Go to certs in salesforce and import the cert.
Copy the Certificate’s Unique Name , (you will need it in a further step)
Setup domain wide delegation
Go to the google admin console to give the service account the permission to act on behalve of other users.
Click security
Click api controls
Click manage domain wide delegation
Click add new and set the client id to the client id that was created with your service account
add the following scope
Code Block https://www.googleapis.com/auth/calendar.events, https://www.googleapis.com/auth/calendar
Click Authorize
...