Rasa Studio - Rasa Pro integration

Hello, I have Rasa Studio Replicated, and I want to configure rasa pro and rasa studio integration from the rasapro pod (rasa studio replicated creates a set of pods). So far I´ve done this:

  1. Modify ect/hosts so that rasa studio DNS can be resolved from the rasapro pod
  2. Executed rasa studio config –advanced –disable verify to configure the integration, which created this global.yml file:

metrics: enabled: true rasa_user_id: 75499169f9684c2886d9aa5f73cd287a date: ‘2025-08-29 20:05:08.453174’ traits: enabled: true rasa_user_id: 75499169f9684c2886d9aa5f73cd287a date: ‘2025-08-29 20:05:08.453174’ studio: authentication_server_url: https://dns.mx/auth/ studio_url: https://dns.mx/api/graphql/ client_id: studio-web client_secret: client_secret(not included for security) realm_name: rasa-studio disable_verify: true

  1. Then I´ve checked the studio-web client and has the following configuration

The client has secrets enabled y its the same included in global.yml

  1. i´ve tried rasa studio login –username ddelarosa –password mypwd and I have the following error:

ERROR rasa.studio.results_logger - [error ] Unable to authenticate with Keycloak at https://dns.mx/auth/ Please check if the credentials are correct. event_key=studio.keycloak_error 401: b’{“error”:“unauthorized_client”,“error_description”:“Invalid client or Invalid client credentials”}’

  1. I got the keycloal pod logs and got the following: 2025-08-29 20:13:30,632 WARN [org.keycloak.events] (executor-thread-228) type=“LOGIN_ERROR”, realmId=“080fe548-f21b-4170-90ff-3a6a14949164”, clientId=“studio-web”, userId=“null”, ipAddress=“10.0.0.5”, error=“invalid_client_credentials”, grant_type=“password”
  2. I´ve tried the access using this curl command: curl -kX POST “https://dns.mx/auth/realms/rasa-studio/protocol/openid-connect/token” -H “Content-Type: application/x-www-form-urlencoded” -d “grant_type=password” -d “client_id=studio-web” -d “client_secret=secret” -d “username=ddelarosa” -d “password=mypwd” and i got the access token

After all this steps, i still can´t login using rasa studio login commands, so, would you please help me in order to be able to complete this integration and try it?

Thanks in advance