We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm on swaggerVersion: "1.2" right now and when I send a request URL, it sends a
"https://{server_ip}:{port}/....."
How do I get rid of the ":{port}" values from the Request URL?
my base path looks like
{{server_proto}}://{{server_ip}}/{{api_url}}. but they come out as {{server_proto}}://{{server_ip}}:{port}/{{api_url}}. it's using internal port.
The text was updated successfully, but these errors were encountered:
Reference: swagger-api/swagger-ui#2236
Sorry, something went wrong.
Fixed. In shred.bundle.js.
url: { get: function() { if (!this.scheme) { return null; } return sprintf("%s://%s%s%s", this.scheme, this.host, getPortString(this.scheme, this.port), //removed Port (this.proxy ? "/" : this.path) + (this.query ? ("?" + this.query) : "")); },
you can take out the colon from %s://%s%s%s
No branches or pull requests
I'm on swaggerVersion: "1.2" right now and when I send a request URL, it sends a
"https://{server_ip}:{port}/....."
How do I get rid of the ":{port}" values from the Request URL?
my base path looks like
{{server_proto}}://{{server_ip}}/{{api_url}}. but they come out as
{{server_proto}}://{{server_ip}}:{port}/{{api_url}}. it's using internal port.
The text was updated successfully, but these errors were encountered: