Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
894 views
in Technique[技术] by (71.8m points)

openid connect - Available authorization modal on swagger-ui is not populated for OIDC security scheme

Goal: I am trying to make Open ID Connect authentication work for swagger-ui on Spring.

Problem: When I click 'Authorize' button on swagger UI, 'Available authentication' modal is empty.

So far:

I have set up security scheme as suggested in the swagger documentation. API documentation is generated correctly as following.

...

"components": {
  "securitySchemes": {
    "openId": {
      "type": "openIdConnect",
      "openIdConnectUrl": "https://{---}.okta.com/oauth2/default/.well-known/openid-configuration" 
    }
  }
}

...

## I have omitted the url on purpose but have confirmed that the GET request succeeds.

I read up on similar issues, but most of them points out that swagger-ui for OIDC was not supported prior to 3.38.0. Since I am using springdoc v1.5.2 which has a dependency on swagger-ui v.3.38.0 I don't think this is the cause.

Wondering if anyone out there got things to work. Any help would be greatly appreciated.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...