我正在使用 passport-saml 并试图让我的重定向在获取请求上工作。但是我从服务器得到的响应是纯 HTML。如何让它在新页面中加载 HTML?
this.http.get(this.baseUrl + '/login/saml',{responseType: 'text'}).subscribe((response) =>{console.log("saml response",response); Response.redirect(response)}, error =>{console.log(" saml error",error)})
我得到整个 html 页面作为响应,而我希望页面重定向到 url 位置进行登录。
任何帮助将不胜感激。