登录
首页 >  Golang >  Go问答

chromedp如何获得响应的json数据

来源:Golang技术栈

时间:2023-03-05 09:11:03 271浏览 收藏

怎么入门Golang编程?需要学习哪些知识点?这是新手们刚接触编程时常见的问题;下面golang学习网就来给大家整理分享一些知识点,希望能够给初学者一些帮助。本篇文章就来介绍《chromedp如何获得响应的json数据》,涉及到爬虫、golang、chromedp,有需要的可以收藏一下

问题内容

package main

import (
	"context"
	"fmt"
	"github.com/chromedp/cdproto/network"
	"github.com/chromedp/chromedp"
	"log"
	"strings"
	"time"
)

func main() {
	test("274800823@qq.com")
}

func test(email string) {
	opts := append(chromedp.DefaultExecAllocatorOptions[:],
		chromedp.Flag("headless", false),
		chromedp.Flag("enable-automation", false),
		chromedp.UserAgent(`Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36`),
		chromedp.ProxyServer("127.0.0.1:10809"),
	)
	allocCtx, _ := chromedp.NewExecAllocator(context.Background(), opts...)

	ctx, cancel := chromedp.NewContext(
		allocCtx,
		chromedp.WithLogf(log.Printf),
	)
	defer cancel()
	// 设置超时时间
	ctx, cancel = context.WithTimeout(ctx, 15*time.Second)
	defer cancel()
	listenForNetworkEvent(ctx)
	chromedp.Run(ctx, network.Enable(),
		chromedp.Navigate("https://accounts.google.com/signin/v2/identifier?hl=zh-CN&passive=true&continue=https%3A%2F%2Fwww.google.com.hk%2F%3Fhl%3Dzh-cn&ec=GAZAmgQ&flowName=GlifWebSignIn&flowEntry=ServiceLogin"),
		// 等待元素加载完成
		chromedp.WaitVisible("body", chromedp.ByQuery),
		chromedp.SendKeys("//*[@id=\"identifierId\"]", email, chromedp.BySearch),
		chromedp.Click("//*[@id=\"identifierNext\"]/div/button/span"),

		chromedp.Sleep(2*time.Second),
	)
}
func listenForNetworkEvent(ctx context.Context) {
	chromedp.ListenTarget(ctx, func(ev interface{}) {
		switch ev := ev.(type) {
		case *network.EventResponseReceived:
			if len(ev.Response.Headers) != 0 {
				if strings.Contains(ev.Response.URL, "accountlookup") {
					//这里只能获取到请求头等信息  我是想获取到ajax的json响应数据
					headers := ev.Response.Headers
					fmt.Println(headers)
				}
			}
		}

	})
}

正确答案

这里有一些实例,看看能用上不?

https://github.com/chromedp/examples

终于介绍完啦!小伙伴们,这篇关于《chromedp如何获得响应的json数据》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布Golang相关知识,快来关注吧!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>