Okta Spoke : Token does not refresh automaticallyIssue When the access token has expired and a refresh token is available, using any action under the Okta Spoke should ideally fetch a new access token automatically. However, the endpoint is returning the following error: {"error":"unauthorized_client","error_description":"The client is not authorized to use the provided grant type. Configured grant types: [authorization_code]."}CauseIf the refresh token is available but the access token is not, ServiceNow sends a request to the endpoint to fetch a new access token using the grant_type=refresh_token. However, the endpoint returns an error indicating that "The client is not authorized to use the provided grant type. Request:refresh_token=exampleRefreshToken123&grant_type=refresh_token&scope=exampleScope&client_secret=exampleClientSecret456&client_id=exampleClientId789 Response:{"error":"unauthorized_client","error_description":"The client is not authorized to use the provided grant type. Configured grant types: [authorization_code]."}ResolutionYou need to collaborate with your Endpoint team to configure it to accept the refresh token grant type, which will resolve the issue.