I'm trying to create a custom connector based on oauth2 to a Saas solution (https://canvas.instructure.com/doc/api/file.oauth.html)
I'm able to create a connection to allow the connector to connect on my behalf and I have access to the API action I want to perform.
But when testing the custom connector, I receive a 401. In the test request I see a bearer token send to https://europe-001.azure-apim.net/apim/canvas.20flow.5fc4....
{
"Authorization": "Bearer eyJ..."
}
The error message is:
{
"errors": [
{
"message": "Invalid access token."
}
]
}
Can I troubleshoot this further without having access to the Flow or SaaS backend?