我曾经使用Spring Cloud Gateway来提供在Nginx中运行的角度应用程序。
运行在
上的Spring云网关http://localhost:8080/
在
上运行的Angular应用 http://localhost:4200/
在http://localhost:4200上以路径http://localhost:8080/ui运行的网关映射角度
当我使用oauth进行身份验证时,Oauth服务器会将url中的访问令牌作为片段发送到网关,例如
http://localhost:8080/ui#access_token=
但是当网关将url转发到angular时,片段就会丢失。
我该如何在Spring Cloud Gateway中向下游转发url片段并进行角度工作?