pub fn validate_scopes(scope_str: &str) -> Result<Vec<String>, AuthError>Expand description
Parse and validate a space-separated scope string.
Rules:
openidmust be present (this is an OIDC provider).- All scopes must be in
SUPPORTED_SCOPES.
Returns the validated scopes as a Vec<String>.