Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swagger does not replace url path parameter with German Umlaut (äöü) in url #10367

Open
benno-mueller-saxess opened this issue Mar 14, 2025 · 1 comment

Comments

@benno-mueller-saxess
Copy link

benno-mueller-saxess commented Mar 14, 2025

Q&A (please complete the following information)

  • OS: Linux
  • Browser: Chrome
  • Version: 132.0.6834.159
  • Method of installation: Maven
  • Swagger-UI version: 5.19.3
  • Swagger/OpenAPI version: OpenAPI 3.0

Content & configuration

URL:

Example Swagger/OpenAPI definition:

openapi: 3.1.0
info:
  title: OpenAPI definition
  version: v0
servers:
- url: http://localhost:8080
  description: Generated server url
paths:
  /täst/{id}:
    get:
      tags:
      - example-controller
      operationId: testMitUmlaut
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        "200":
          description: OK
          content:
            '*/*':
              schema:
                type: string
components: {}

Swagger-UI configuration options:

SwaggerUI({
  // your config options here
})
?yourQueryStringConfig

Describe the bug you're encountering

To reproduce...

Steps to reproduce the behavior:

  1. Go to Swagger UI in Browser
  2. Click on 'Try it out'
  3. Enter path parameter (e.g. '42')
  4. Click on 'Execute'
  5. See url in execution info (curl, reqest url) -> http://localhost:8080/täst/{id}

Expected behavior

URL in execution info should be: http://localhost:8080/täst/42

Screenshots

Additional context or thoughts

@benno-mueller-saxess
Copy link
Author

swagger-ui-demo.zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant