情况说明 nginx配置https,tomcat正常http接受nginx转发。 nginx 代理https后,(java代码redirect地址)应用redirect https变成http 情况类似 http://2hei.net/mt/2010/02/request-getscheme-cannt-get-https.html http://yywudi.info/nginx-https-400-bad-request-solution/ 原因分析: 经过nginx代理后用的spring mvc的redirect, 其中: request.getScheme() return http but not https. 浏览器调整的地址变成http 解决办法:http://han.guokai.blog.163.com/blog/static/136718271201211631456811/ 在代理模式下,Tomcat 如何识别用户的直接请求(URL、IP、https还是http )? 在透明代理下,如果不做任何配置Tomcat 认为所有的请求都是 Nginx 发出来的,这样会导致如下的错误结果: request.getScheme() //总是 http,而不是实际的http或https request.isSecure() //总是false(因为总是http) request.getRemoteAddr() //总是 nginx 请求的 IP,而不是用户的IP request.getRequestURL() //总是 nginx 请求的URL 而不是用户实际请求的 URL response.sendRedirect( 相对url ) //总是重定向到 http 上 (因为认为当前是 http 请求) 如果程序中把这些当实际用户请求做处理就有问题了。解决方法很简单,只需要分别配置一下 Nginx 和 Tomcat 就好了,而不用改程序。 配置 Nginx 的转发选项: proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; 配置Tomcat server.xml 的 Engine 模块下配置一个 Value: Valve className="org.apache.catalina.valves.RemoteIpValve" remoteIpHeader="X-Forwarded-For" protocolHeader="X-Forwarded-Proto" protocolHeaderHttpsValue="https"/ 配置双方的 X-Forwarded-Proto 就是为了正确地识别实际用户发出的协议是 http 还是 https。X-Forwarded-For 是为了获得实际用户的 IP。 这样以上5项测试就都变为正确的结果了,就像用户在直接访问 Tomcat 一样。 后记: 上面https到http解决办法对context引导还是会出问题, 比如输入https://xxxx/signet 会转向到http://xxx/signet/ , http情况下:输入http://xxxx/signet会返回一个302到http://xxxx/signet/然后正常访问。 解决办法: # re-write redirects to http as to https, example: /home proxy_redirect http:// https://; http://serverfault.com/questions/145383/proxy-https-requests-to-a-http-backend-with-nginx https://www.digitalocean.com/community/tutorials/how-to-configure-nginx-with-ssl-as-a-reverse-proxy-for-jenkins http://www.cyberciti.biz/faq/linux-unix-nginx-redirect-all-http-to-https/
企业微信网页授权两次重定向跳转问题?每次请求授权链接 https://open.weixin.qq.com/connect/oauth2/authorize?appid=xxx&redirect_uri=xxx&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect 都会重定向链接redirect_uri都会自动请求两次,第一次在安卓手机上没问题,但是可以明显感受到有两次请求;在IOS上第一次会报错(报错如下),第二次会跳转,查了信息说在链接中添加&connect_redirect=1这个参数就可以,我加了之后安卓手机确实只跳转一次,但是IOS由于只跳转一次,会停留在下面报错界面没有第二次的成功跳转,请问这个是什么原因导致的?解决方案是什么? [图片]
2023-02-21情况说明 nginx配置https,tomcat正常http接受nginx转发。 nginx 代理https后,(java代码redirect地址)应用redirect https变成http 情况类似 http://2hei.net/mt/2010/02/request-getscheme-cannt-get-https.html http://yywudi.info/nginx-https-400-bad-request-solution/ 原因分析: 经过nginx代理后用的spring mvc的redirect, 其中: request.getScheme() return http but not https. 浏览器调整的地址变成http 解决办法:http://han.guokai.blog.163.com/blog/static/136718271201211631456811/ 在代理模式下,Tomcat 如何识别用户的直接请求(URL、IP、https还是http )? 在透明代理下,如果不做任何配置Tomcat 认为所有的请求都是 Nginx 发出来的,这样会导致如下的错误结果: request.getScheme() //总是 http,而不是实际的http或https request.isSecure() //总是false(因为总是http) request.getRemoteAddr() //总是 nginx 请求的 IP,而不是用户的IP request.getRequestURL() //总是 nginx 请求的URL 而不是用户实际请求的 URL response.sendRedirect( 相对url ) //总是重定向到 http 上 (因为认为当前是 http 请求) 如果程序中把这些当实际用户请求做处理就有问题了。解决方法很简单,只需要分别配置一下 Nginx 和 Tomcat 就好了,而不用改程序。 配置 Nginx 的转发选项: proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; 配置Tomcat server.xml 的 Engine 模块下配置一个 Value: Valve className="org.apache.catalina.valves.RemoteIpValve" remoteIpHeader="X-Forwarded-For" protocolHeader="X-Forwarded-Proto" protocolHeaderHttpsValue="https"/ 配置双方的 X-Forwarded-Proto 就是为了正确地识别实际用户发出的协议是 http 还是 https。X-Forwarded-For 是为了获得实际用户的 IP。 这样以上5项测试就都变为正确的结果了,就像用户在直接访问 Tomcat 一样。 后记: 上面https到http解决办法对context引导还是会出问题, 比如输入https://xxxx/signet 会转向到http://xxx/signet/ , http情况下:输入http://xxxx/signet会返回一个302到http://xxxx/signet/然后正常访问。 解决办法: # re-write redirects to http as to https, example: /home proxy_redirect http:// https://; http://serverfault.com/questions/145383/proxy-https-requests-to-a-http-backend-with-nginx https://www.digitalocean.com/community/tutorials/how-to-configure-nginx-with-ssl-as-a-reverse-proxy-for-jenkins http://www.cyberciti.biz/faq/linux-unix-nginx-redirect-all-http-to-https/
H5的OAuth接口跳转变成http遇到很奇怪的事情 https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx609cfb1032aa0a50&redirect_uri=https%3A%2F%2Fmini.zeiss.com.cn%2F175-museum%2Fviews%2Fhome%2Fhome.html&response_type=code&scope=snsapi_base&state=1#wechat_redirect&connect_redirect=1#wechat_redirect 因为切换服务器,域名没有改变。 之前都没有问题。然后就遇到部分测试用户(各个平台都有),跳转后地址变为http。由于页面被用于小程序的H5 WebViewer。就被拦截了。提示非有效的http地址。 按理我请求http,跳转应该不改才对啊。
2023-02-21情况说明 nginx配置https,tomcat正常http接受nginx转发。 nginx 代理https后,(java代码redirect地址)应用redirect https变成http 情况类似 http://2hei.net/mt/2010/02/request-getscheme-cannt-get-https.html http://yywudi.info/nginx-https-400-bad-request-solution/ 原因分析: 经过nginx代理后用的spring mvc的redirect, 其中: request.getScheme() return http but not https. 浏览器调整的地址变成http 解决办法:http://han.guokai.blog.163.com/blog/static/136718271201211631456811/ 在代理模式下,Tomcat 如何识别用户的直接请求(URL、IP、https还是http )? 在透明代理下,如果不做任何配置Tomcat 认为所有的请求都是 Nginx 发出来的,这样会导致如下的错误结果: request.getScheme() //总是 http,而不是实际的http或https request.isSecure() //总是false(因为总是http) request.getRemoteAddr() //总是 nginx 请求的 IP,而不是用户的IP request.getRequestURL() //总是 nginx 请求的URL 而不是用户实际请求的 URL response.sendRedirect( 相对url ) //总是重定向到 http 上 (因为认为当前是 http 请求) 如果程序中把这些当实际用户请求做处理就有问题了。解决方法很简单,只需要分别配置一下 Nginx 和 Tomcat 就好了,而不用改程序。 配置 Nginx 的转发选项: proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; 配置Tomcat server.xml 的 Engine 模块下配置一个 Value: Valve className="org.apache.catalina.valves.RemoteIpValve" remoteIpHeader="X-Forwarded-For" protocolHeader="X-Forwarded-Proto" protocolHeaderHttpsValue="https"/ 配置双方的 X-Forwarded-Proto 就是为了正确地识别实际用户发出的协议是 http 还是 https。X-Forwarded-For 是为了获得实际用户的 IP。 这样以上5项测试就都变为正确的结果了,就像用户在直接访问 Tomcat 一样。 后记: 上面https到http解决办法对context引导还是会出问题, 比如输入https://xxxx/signet 会转向到http://xxx/signet/ , http情况下:输入http://xxxx/signet会返回一个302到http://xxxx/signet/然后正常访问。 解决办法: # re-write redirects to http as to https, example: /home proxy_redirect http:// https://; http://serverfault.com/questions/145383/proxy-https-requests-to-a-http-backend-with-nginx https://www.digitalocean.com/community/tutorials/how-to-configure-nginx-with-ssl-as-a-reverse-proxy-for-jenkins http://www.cyberciti.biz/faq/linux-unix-nginx-redirect-all-http-to-https/
https无缘无故就变成httphttps无缘无故就变成http[图片]
2023-02-21情况说明 nginx配置https,tomcat正常http接受nginx转发。 nginx 代理https后,(java代码redirect地址)应用redirect https变成http 情况类似 http://2hei.net/mt/2010/02/request-getscheme-cannt-get-https.html http://yywudi.info/nginx-https-400-bad-request-solution/ 原因分析: 经过nginx代理后用的spring mvc的redirect, 其中: request.getScheme() return http but not https. 浏览器调整的地址变成http 解决办法:http://han.guokai.blog.163.com/blog/static/136718271201211631456811/ 在代理模式下,Tomcat 如何识别用户的直接请求(URL、IP、https还是http )? 在透明代理下,如果不做任何配置Tomcat 认为所有的请求都是 Nginx 发出来的,这样会导致如下的错误结果: request.getScheme() //总是 http,而不是实际的http或https request.isSecure() //总是false(因为总是http) request.getRemoteAddr() //总是 nginx 请求的 IP,而不是用户的IP request.getRequestURL() //总是 nginx 请求的URL 而不是用户实际请求的 URL response.sendRedirect( 相对url ) //总是重定向到 http 上 (因为认为当前是 http 请求) 如果程序中把这些当实际用户请求做处理就有问题了。解决方法很简单,只需要分别配置一下 Nginx 和 Tomcat 就好了,而不用改程序。 配置 Nginx 的转发选项: proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; 配置Tomcat server.xml 的 Engine 模块下配置一个 Value: Valve className="org.apache.catalina.valves.RemoteIpValve" remoteIpHeader="X-Forwarded-For" protocolHeader="X-Forwarded-Proto" protocolHeaderHttpsValue="https"/ 配置双方的 X-Forwarded-Proto 就是为了正确地识别实际用户发出的协议是 http 还是 https。X-Forwarded-For 是为了获得实际用户的 IP。 这样以上5项测试就都变为正确的结果了,就像用户在直接访问 Tomcat 一样。 后记: 上面https到http解决办法对context引导还是会出问题, 比如输入https://xxxx/signet 会转向到http://xxx/signet/ , http情况下:输入http://xxxx/signet会返回一个302到http://xxxx/signet/然后正常访问。 解决办法: # re-write redirects to http as to https, example: /home proxy_redirect http:// https://; http://serverfault.com/questions/145383/proxy-https-requests-to-a-http-backend-with-nginx https://www.digitalocean.com/community/tutorials/how-to-configure-nginx-with-ssl-as-a-reverse-proxy-for-jenkins http://www.cyberciti.biz/faq/linux-unix-nginx-redirect-all-http-to-https/
web-view发布后在小程序里跳转就会把https变成http?很紧急,请官方大大帮忙看下怎么回事
2023-02-21情况说明 nginx配置https,tomcat正常http接受nginx转发。 nginx 代理https后,(java代码redirect地址)应用redirect https变成http 情况类似 http://2hei.net/mt/2010/02/request-getscheme-cannt-get-https.html http://yywudi.info/nginx-https-400-bad-request-solution/ 原因分析: 经过nginx代理后用的spring mvc的redirect, 其中: request.getScheme() return http but not https. 浏览器调整的地址变成http 解决办法:http://han.guokai.blog.163.com/blog/static/136718271201211631456811/ 在代理模式下,Tomcat 如何识别用户的直接请求(URL、IP、https还是http )? 在透明代理下,如果不做任何配置Tomcat 认为所有的请求都是 Nginx 发出来的,这样会导致如下的错误结果: request.getScheme() //总是 http,而不是实际的http或https request.isSecure() //总是false(因为总是http) request.getRemoteAddr() //总是 nginx 请求的 IP,而不是用户的IP request.getRequestURL() //总是 nginx 请求的URL 而不是用户实际请求的 URL response.sendRedirect( 相对url ) //总是重定向到 http 上 (因为认为当前是 http 请求) 如果程序中把这些当实际用户请求做处理就有问题了。解决方法很简单,只需要分别配置一下 Nginx 和 Tomcat 就好了,而不用改程序。 配置 Nginx 的转发选项: proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; 配置Tomcat server.xml 的 Engine 模块下配置一个 Value: Valve className="org.apache.catalina.valves.RemoteIpValve" remoteIpHeader="X-Forwarded-For" protocolHeader="X-Forwarded-Proto" protocolHeaderHttpsValue="https"/ 配置双方的 X-Forwarded-Proto 就是为了正确地识别实际用户发出的协议是 http 还是 https。X-Forwarded-For 是为了获得实际用户的 IP。 这样以上5项测试就都变为正确的结果了,就像用户在直接访问 Tomcat 一样。 后记: 上面https到http解决办法对context引导还是会出问题, 比如输入https://xxxx/signet 会转向到http://xxx/signet/ , http情况下:输入http://xxxx/signet会返回一个302到http://xxxx/signet/然后正常访问。 解决办法: # re-write redirects to http as to https, example: /home proxy_redirect http:// https://; http://serverfault.com/questions/145383/proxy-https-requests-to-a-http-backend-with-nginx https://www.digitalocean.com/community/tutorials/how-to-configure-nginx-with-ssl-as-a-reverse-proxy-for-jenkins http://www.cyberciti.biz/faq/linux-unix-nginx-redirect-all-http-to-https/
OAuth2.0回调https变成http在OAuth2.0授权时,参数传入的redirect_uri回调地址是https协议,但是等微信授权完成后再回调服务器就变成了http协议了。
2023-02-17官方回复一直模棱两可的,网上的回复也一直没有肯定的回复。 这边根据我两天的求证实验,微信小程序是可以通过web-view来实现公众号网页授权的! 白屏主要可能的原因是链接顺序不对 https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html 原文:尤其注意:由于授权操作安全等级较高,所以在发起授权请求时,微信会对授权链接做正则强匹配校验,如果链接的参数顺序不对,授权页面将无法正常访问 https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect 参数顺序要跟这个顺序保持一致,不然白屏,亲测,有效。
小程序 web-view打开公众号授权链接,模拟器正常,真机白屏?webview地址:https://app.diabetes.com.cn/sport-wechat 业务域名已设置,开发工具正常展示,真机调试白屏! 调试基础库:2.12.2 小程序appId: wx75551cb56606869d 公众号appId: wxc9ca791c19ab6137 错误如图: [图片]
2022-11-27官方回复一直模棱两可的,网上的回复也一直没有肯定的回复。 这边根据我两天的求证实验,微信小程序是可以通过web-view来实现公众号网页授权的! 白屏主要可能的原因是链接顺序不对 https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_webpage_authorization.html 原文:尤其注意:由于授权操作安全等级较高,所以在发起授权请求时,微信会对授权链接做正则强匹配校验,如果链接的参数顺序不对,授权页面将无法正常访问 https://open.weixin.qq.com/connect/oauth2/authorize?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect 参数顺序要跟这个顺序保持一致,不然白屏,亲测,有效。
微信小程序跳转web-view需要授权后,真机调试白屏?微信小程序跳转web-view,h5页面需要微信授权,真机调试白屏,一直停留在授权页
2022-11-27