授权服务器跳转异常
来源:5-6 实现授权码认证流程(2)
我要当学霸丶
2019-12-23
老师,如果用Zuul跳转认证服务器,
如访问:
http://api.xxx.com:8080/auth/oauth/authorize?client_id=gateway&response_type=code&redirect_uri=http://localhost
不能正常回跳,只能跳转到认证服务器根目录"/"下,
但如果直接访问授权服务器
http://auth.xxx.com:8001/oauth/authorize?client_id=gateway&response_type=code&redirect_uri=http://localhost
则一切正常
这可能有哪些原因会导致呢?
写回答
1回答
-
不要通过zuul来跳转认证服务器,因为默认它不是前后端分离的,需要改造,直接访问即可。
012019-12-25
相似问题