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

前端 未结 5 629
走了就别回头了
走了就别回头了 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:33

    In main.py file,

    in the part where you create a wsgi application

    under application = webapp.wsgiapplication(

    add a handler

    (decorator.callback_path,decorator.callback_handler()),
    

提交回复
热议问题