Spring OAuth redirect_uri not using https

前端 未结 6 2021
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-05 14:05

I have a Spring Boot 1.3.0 application with Spring Security OAuth included as a sort of SSO integration.

The problem is that the application is running in a non-SSL

6条回答
  •  南笙
    南笙 (楼主)
    2020-12-05 14:48

    I had the same problem. I add theses two parameters to force HTTPS in redirect_uri :

    preEstablishedRedirectUri: https://...
    useCurrentUri: false
    

    It works : "redirect_uri" is now using HTTPS

提交回复
热议问题