微信小程序获取需要认证的网络图片
开发BB平台小程序的时候,公告内容需要展示图片,但是图片地址访问时需要认证,然而微信没有一种可以修改图片访问请求的方法,所以只好反向代理一下了。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 location ^~ /img { default_type text/html; # 改写url if ($uri ~ "/img(.*)") { set $r_uri "https://wlkc.ouc.edu.cn$1"; } proxy_set_header Cookie $arg_cookie; proxy_intercept_errors on; error_page 301 302 = @handle_redirects; resolver 223.5.5.5; proxy_pass $r_uri; } location @handle_redirects { set $location '$upstream_http_location'; if ($location ~ "https://wlkc.ouc.edu.cn(/.*)") { set $path "$1"; } rewrite ^(....