Ignoring captcha of queries

I perform a query on a site to get some data, by my application. However, this site is now asking for a CAPTCHA for these queries. Is there any way I can get around this?

How is this related to Go?

My query is in GO.

resp, err := http.Get("http://www4.tjmg.jus.br/juridico/sf/proc_resultado.jsp?tipoPesquisa=1&txtProcesso=01147778620178130479&comrCodigo=479&nomePessoa=&tipoPessoa=X&naturezaProcesso=0&situacaoParte=X&codigoOAB=&tipoOAB=N&ufOAB=MG&numero=1&select=1&tipoConsulta=1&natureza=0&ativoBaixado=X&listaProcessos=01147778620178130479")
	if err != nil {
		log.Fatalln("Erro")
	}
	//html, _ := ioutil.ReadAll(resp.Body)
	htmlRetorno, _ := ioutil.ReadAll(resp.Body)

This return a CAPTCHA, but i want ignore

The idea of a captcha is that you can’t ignore it. You have to solve it. By hand.

Any tips?

If it were trivial to work around the captcha it would be pointless. I’d suggest talking to the site owners about some sort of machine / API access. It sounds like they currently do not want you to do what you want to do.

1 Like
1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.