@itentialopensource/adapter-salesforce_tooling
Version:
This adapter integrates with system described as: Salesforce Tooling.
39 lines (34 loc) • 2.14 kB
Markdown
for authenticating the Salesforce Tooling adapter with OAuth Authentication. Properly configuring the properties for an adapter in Itential Platform is critical for getting the adapter online. You can read more about adapter authentication <a href="https://docs.itential.com/opensource/docs/authentication" target="_blank">HERE</a>.
The Salesforce Tooling adapter requires OAuth Authentication. If you change authentication methods, you should change this section accordingly and merge it back into the adapter repository.
STEPS
1. Ensure you have access to a Salesforce Tooling server and that it is running
2. Follow the steps in the README.md to import the adapter into Itential Platform if you have not already done so
3. Use the properties below for the ```properties.authentication``` field
```json
"authentication": {
"auth_method": "request_token",
"username": "username",
"password": "passwordsecretToken",
"token_timeout": 1800000,
"token_cache": "local",
"invalid_token_error": 401,
"auth_field": "header.headers.Authorization",
"auth_field_format": "Bearer {token}",
"client_id": "client_id",
"client_secret": "client_secret",
"grant_type": "password"
}
```
4. Restart the adapter. If your properties were set correctly, the adapter should go online.
- Make sure you copied over the correct credentials.
- Turn on debug level logs for the adapter in Itential Platform Admin Essentials.
- Turn on auth_logging for the adapter in Itential Platform Admin Essentials (adapter properties).
- Investigate the logs - in particular:
- The FULL REQUEST log to make sure the proper headers are being sent with the request.
- The FULL BODY log to make sure the payload is accurate.
- The CALL RETURN log to see what the other system is telling us.
- Credentials should be ** masked ** by the adapter so make sure you verify token.
- Remember when you are done to turn auth_logging off as you do not want to log credentials.
This document will go through the steps