workingxx92

Results 5 issues of workingxx92

How to use req.headers.host ``` sitemap: { path: '/products.xml', // exclude: ['/**'], sitemaps: [ { path: '/products-1.xml', exclude: ['/**'], routes: async () => { let host = req.headers.host axios.setHeader("R-HOST", host)...

Hi, Error: Request with proxy working incorrect ![Screen Shot 2021-12-11 at 3 28 11 PM](https://user-images.githubusercontent.com/86577210/145670009-7a1c3700-401f-4a63-b9ca-46d2b7c61828.png)

This code below is not working ``` proxy_info = httplib2.ProxyInfo(httplib2.socks.PROXY_TYPE_HTTP_NO_TUNNEL, 'zproxy.lum-superproxy.io', 22225, proxy_user='user', proxy_pass='pass') client = httplib2.Http(proxy_info=proxy_info) response, body = client.request('http://lumtest.com/myip.json') print('response', response, body) Traceback (most recent call last): File...