I’m trying to install the app using OAuth and I’m receiving the below error TokenError: Client authentication failed. at OAuth2Strategy.parseErrorResponse at OAuth2Strategy._createOAuthError
Can you let me know why I’m getting this type of error? This is happening in both local as well as a custom app.
Below is my oauth_config.json
{
“client_id”: “0d518115-6f6f-40fe-8085-a7c6047204a0”,
“client_secret”: “Sb24I33BpNDiNoe79wlTgA==”,
“authorize_url”: “https://api.getgo.com/oauth/v2/authorize”,
“token_url”: “https://api.getgo.com/oauth/v2/token”,
“token_type”: “account”
}
In the client_secret I have some special characters like +,=,/ etc will those impact to authorize the app? The same procedure is working fine in postman.
This worked fine while installing and when accessing the access token it is giving me the below error response: "{“int_err_code”:“InvalidToken”,“msg”:“Invalid token passed”}"
and in the GoToAssist documentation its mentioned like IMPORTANT: The access token and refresh token values are truncated. They are large values. will this effect while using API calls?
Below are the headers I used for making API calls