VOOZH about

URL: https://dzone.com/articles/spring-boot-how-to-solve-oauth2-redirect-uri-misma

⇱ Spring Boot: Solving OAuth2 REDIRECT_URI_MISMATCH [Snippet]


Related

  1. DZone
  2. Coding
  3. Frameworks
  4. Spring Boot: Solving OAuth2 REDIRECT_URI_MISMATCH [Snippet]

Spring Boot: Solving OAuth2 REDIRECT_URI_MISMATCH [Snippet]

If you've come across a redirect_uri_mismatch error before when using Spring Boot and OAuth 2, then this solution is for you.

By May. 31, 18 · Code Snippet
Likes
Comment
Save
30.6K Views

Join the DZone community and get the full member experience.

Join For Free

Problem: When trying to authenticate a user using OAuth2 through a third-party service like (Google, Facebook, etc.), the following error occurs:

Solution: A redirect_uri_mismatch error occurs when the redirect URL defined for your application at the authorization service doesn't match the value of parameter "redirect_uri" passed by your request.

When integrating with Spring Boot, the default value of redirect_uri is set to "<ip>:<port>/login". 

In order to solve this issue, you have 2 options:

  1. Define “<ip>:<port>/login” as a redirect URL under the authorization service.

  2. Use a custom redirect URL by setting the following attributes in application.properties:

security.oauth2.client.preEstablishedRedirectUri=http://localhost:9090/callback
security.oauth2.client.useCurrentUri=false


In the above configuration, we set a custom redirect URI as “http://localhost:9090/callback”.

authentication security Spring Framework

Published at DZone with permission of Hussein Terek. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Spring OAuth Server: Token Claim Customization
  • How to Implement Two-Factor Authentication in a Spring Boot OAuth Server? Part 1: Configuration
  • Microservices With JHipster
  • Your API Authentication Isn’t Broken; It’s Quietly Failing in These 6 Ways

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

Let's be friends: