Next Generation OAuth Support with Spring Security 5.0 - Joe Grandja

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

ความคิดเห็น • 13

  • @divanshuaggarwal5628
    @divanshuaggarwal5628 6 ปีที่แล้ว

    Great... Finally found a perfectly working code

  • @padmajatutioncenter8280
    @padmajatutioncenter8280 6 ปีที่แล้ว

    Thank you so much JOE.. But getting problem when i am calling through simple proxy in react application it still redirecting to server side base url . can you suggest how to solve this

  • @PavanKumar-vv2he
    @PavanKumar-vv2he 6 ปีที่แล้ว

    i got a doubt which method do i need to override for custom access token request for adding a custom header for the request

  • @narayanareddy1138
    @narayanareddy1138 7 ปีที่แล้ว +1

    Thanks Joe :)

  • @user-vm8oe7js3z9
    @user-vm8oe7js3z9 6 ปีที่แล้ว

    thanks ... This video is good for me :)

  • @turgosTube
    @turgosTube 6 ปีที่แล้ว

    Do you have a tutorial for Auth Server with Spring Security 5 - OAuth2? I appreciate if you can point me to any running sample of Auth Server and Sample Client with Spring Security 5 - OAuth2 | JWT.

  • @adenix
    @adenix 6 ปีที่แล้ว

    Do you havre any resources on Unit Testing a controller that is secured by OIDC?

  • @jaredweinfurtner3726
    @jaredweinfurtner3726 7 ปีที่แล้ว

    Link to the referenced GitHub: github.com/jgrandja/springone2017-demo

  • @obinnakalu167
    @obinnakalu167 6 ปีที่แล้ว

    Actually, in the application.yml, including 'openid' in the scope entries for the client registrationId, google, causes the authentication attempt to fail, with error msg -
    (Your login attempt was not successful, try again.
    Reason: [oidc_provider_not_configured] An OpenID Connect Authentication Provider has not been configured. Check to ensure you include the dependency 'spring-security-oauth2-jose'.)
    Where-as, removing it, results in authentication going through successfully.
    A quick read through the source code inside the SpringSecurity project's source file at github.com/spring-projects/spring-security/blob/master/config/src/main/java/org/springframework/security/config/annotation/web/configurers/oauth2/client/OAuth2LoginConfigurer.java, shows/confirms why (see lines 579-588).
    So, any explanation as to why 'openid' was included in this presentation and it seemed to have worked and not throw the above error? Thnks.

    • @obinnakalu167
      @obinnakalu167 6 ปีที่แล้ว

      Or perhaps, the code/functionality has been changed since after this presentation was done last December 14, 2017. ???