You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are attempting to integrate an OAuth2 token request via the MCP Gateway UI, specifically with a Keycloak-based authentication service at the endpoint:
/auth/realms//protocol/openid-connect/token
This endpoint expects a POST request with the following characteristics:
Currently, the MCP Gateway UI only supports input through JSON Schema (via Schema Builder or raw JSON input). This limitation prevents us from sending properly encoded x-www-form-urlencoded requests.
Problem
All attempts result in the body being improperly encoded as JSON.
Keycloak rejects the request with errors such as:
400 Bad Request: {"error":"invalid_request","error_description":"Missing form parameter: grant_type"}