Getting Error: redirect_uri_mismatch The redirect URI in the request: http://localhost:8080/oauth2callback did not match a registered redirect URI

前端 未结 5 630
走了就别回头了
走了就别回头了 2020-12-01 21:34

I\'m getting this error while trying to run my application...

The redirect URI in the request: http://localhost:8080/oauth2callback did not match a registere         


        
5条回答
  •  南方客
    南方客 (楼主)
    2020-12-01 22:34

    You will actually need to add the following to your redirect URIs:

    http://localhost:8080/oauth2callback
    

    Also, you may need to append a trailing / if the above doesn't match:

    http://localhost:8080/oauth2callback/
    

提交回复
热议问题