below I have some Jsoup code, and im just trying to just establish scraping from coinbase, but for some reason it throws the error in the title, does anyone know what im doing wrong?
import java.io.IOException;
import org.jsoup.*;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
public class Main {
public static void main(String[] args)
{
try {
Document doc = Jsoup.connect("https://www.coinbase.com/dashboard").get();
System.out.println(doc.outerHtml());
System.out.println();
}catch(IOException e)
{
e.printStackTrace();
}
}
}