I am unable to access swagger UI under the default path {base_path}/ui/ with the latest 2.0.2 release. Reverting back to 1.5.3 shows the console as exepected.
Is this an exepected behavior? Has the swagger console location changed?
Swagger console
{
"detail": "The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.",
"status": 404,
"title": "Not Found",
"type": "about:blank"
}
Upgrade connexion to 2.0.2 and access swagger UI at {base_path}/ui/
python --versionPython 3.6.3pip show connexion | grep "^Version\:"Version: 2.0.2Looks like its optional since 2.0.0
Swagger UI is now optional, and can be installed with pip install connexion[swagger-ui]
Most helpful comment
Looks like its optional since
2.0.0Swagger UI is now optional, and can be installed with pip install connexion[swagger-ui]