Oauth scope not showing in popup ui
See original GitHub issueWhen reporting an issue, please provide the following details:
- swagger-ui v2.2.10 I am using a package that uses the swagger ui package. the Oauth Scopes where shown in the UI in a prior version but are not shown in the current release.
https://github.com/domaindrivendev/Swashbuckle/issues/1118#issuecomment-310095051
the swagger.json file has the oauth settings and the token server url and flow are working just not the scopes.
here is a frgment of the json:
"securityDefinitions": { "oauth2": { "type": "oauth2", "description": "OAuth2 Implicit Flow", "flow": "implicit", "authorizationUrl": "https://xxxxxxxxxxxx.com/id/connect/authorize", "tokenUrl": "https://xxxxxxxxxxx.com/id/connect/token", "scopes": { "read": "Read access to protected resources", "write": "Write access to protected resources" } } }, "security": [], "tags": []
no scopes or checkboxes are shown in the popup
trying to work out why they are not working with the package update, the rest of the settings are seen, just not the scopes collection.
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (4 by maintainers)

Top Related StackOverflow Question
yes that was the problem and now i can fix my app!!! thanks @webron for your help in idenifiying the source of the problem!!
ok, thanks… i will report this to the project and see what we can do to fix it.
working on a test fix so that i can verify this…