Hi all,
I’m trying to authenticate to another API (Encompass by Ellie Mae)
They have github repos here: https://github.com/EllieMae/developerconnect-dotnet-bindings/
Specifically I’m trying to make a call to get an access_token
If I make just the simple request in python:
import requests
data = {
'grant_type': 'password',
'username': '<username>',
'password': '<password>'
}
response = requests.post('https://api.elliemae.com/oauth2/v1/token', data=data, auth=('<api_client_id>', '<api_client_secret>'))
It doesn’t work - comes back with unidentified client.
I’ve tried everything - can’t seem to get the access token through Zapier - which is making it impossible to integrate.