#!/bin/bash echo "Test d'authentification avec le client lions-user-manager-client" echo "" curl -X POST "http://localhost:8180/realms/lions-user-manager/protocol/openid-connect/token" \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "client_id=lions-user-manager-client" \ -d "client_secret=client-secret-lions-2025" \ -d "username=testuser" \ -d "password=test123" \ -d "grant_type=password" echo ""