You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Swagger-UI is not escaping any HTML special characters / symbols. When you have an API call and it takes two or more parameters, the ampersand is used, and the second, third, etc one happens to contain characters that make up a symbol, it does not get escaped.
The ® part of the URL, will be treated as the registered trademark symbol in the browser. This makes the swagger-ui unusable. Please safe escape the URL. So it it sent to browser as &
I do not know CoffeeScript or the code base. Any pointers on where to look or patches are welcomed.
The text was updated successfully, but these errors were encountered:
Swagger-UI is not escaping any HTML special characters / symbols. When you have an API call and it takes two or more parameters, the ampersand is used, and the second, third, etc one happens to contain characters that make up a symbol, it does not get escaped.
Example Request URL:
http://localhost:9090/api/aws/ec2?instance=m3.large®ion=us-west
The
®
part of the URL, will be treated as the registered trademark symbol in the browser. This makes the swagger-ui unusable. Please safe escape the URL. So it it sent to browser as&
I do not know CoffeeScript or the code base. Any pointers on where to look or patches are welcomed.
The text was updated successfully, but these errors were encountered: