Having obtained my access_token, I would like to verify it’s status from within my resource provider. I am running into errors:
msg=An error occurred while handling a request code=401 debug= details=map[] error=request_unauthorized reason=Check that you provided valid credentials in the right format.
My client has "token_endpoint_auth_method": "none"
so my assumption is that I do not need to supply header information. If I do, what should be the format of the same?
I am using an Elixir Client to perform these calls and not a CURL or direct HTTP call to the service.