_From @chrif on July 16, 2018 19:49_
Example Swagger/OpenAPI definition:
openapi: 3.0.1
info:
version: 1.0.0
title: Swagger Petstore
paths:
/pets:
get:
summary: List all pets
responses:
'200':
description: A paged array of pets
servers:
- url: 'http://{client}.domain.com/api'
variables:
client:
default: acme
components:
securitySchemes:
login:
type: oauth2
flows:
password:
tokenUrl: oauth/v2/token
Authorize form does not replace URL variables:

It instead makes a call to:
http://%7Bclient%7D.domain.com/api

_Copied from original issue: swagger-api/swagger-editor#1837_
FYI I have an open PR that resolves this issue for me https://github.com/swagger-api/swagger-ui/pull/5913
Hopefully it can get some attention and have someone look at it
Most helpful comment
FYI I have an open PR that resolves this issue for me https://github.com/swagger-api/swagger-ui/pull/5913
Hopefully it can get some attention and have someone look at it