为了账号安全,请及时绑定邮箱和手机立即绑定

为什么 ProxyServer 无法在 chromedp GO 上运行

为什么 ProxyServer 无法在 chromedp GO 上运行

Go
拉丁的传说 2023-07-10 16:33:06
我想在 chromedp 上使用代理,但代理似乎不起作用,尝试了 chromedp.ProxyServerctx, cancel := chromedp.NewContext(context.Background())defer cancel()chromedp.ProxyServer("http://username:password@proxyserver.com:31280")chromedp.Run(ctx,        chromedp.Navigate("http://wtfismyip.com"),        chromedp.Sleep(3*time.Second),        chromedp.ActionFunc(func(ctxt context.Context) error {            _, _, contentRect, err := page.GetLayoutMetrics().Do(ctxt)            v := page.Viewport{                X:      contentRect.X,                Y:      contentRect.Y,                Width:  contentRect.Width,                Height: contentRect.Height,                Scale:  1,            }            buf, err := page.CaptureScreenshot().WithClip(&v).Do(ctxt)            log.Printf("Write %v", "/tmp/ss.png")            ioutil.WriteFile("/tmp/ss.png", buf, 0644)            return err        }))使用代理后我得到了我的公共 ipeven。没有错误/警告
查看完整描述

1 回答

?
冉冉说

TA贡献1877条经验 获得超1个赞

尝试这个:


o := append(chromedp.DefaultExecAllocatorOptions[:],

    //... any options here

    chromedp.ProxyServer("http://username:password@proxyserver.com:31280"), 

)


cx, cancel := chromedp.NewExecAllocator(context.Background(), o...)

defer cancel()


ctx, cancel := chromedp.NewContext(cx)

defer cancel()

//... the rest of your code


查看完整回答
反对 回复 2023-07-10
  • 1 回答
  • 0 关注
  • 207 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信