Mashiane Expert Licensed User Longtime User Aug 19, 2021 #1 Ola How can one build a web scraper using BANano? Thanks.
mcqueccu Expert Licensed User Longtime User Aug 19, 2021 #2 With combination of okhttputils and B4X Minihtmlparser Upvote 0
Mashiane Expert Licensed User Longtime User Aug 19, 2021 #3 Ok, yes I guess for a BANanoServer based app that would work perfect. Im thinking of an app that will not use the jetty Server. Upvote 0
Ok, yes I guess for a BANanoServer based app that would work perfect. Im thinking of an app that will not use the jetty Server.
alwaysbusy Expert Licensed User Longtime User Aug 19, 2021 #4 I highly doubt this is possible due to CORS. You will need indeed a server-side part like BANanoServer to do that. EDIT: and even that would only work for static websites. For most you will need a server side renderer. Node.js is probably your best bet. Last edited: Aug 19, 2021 Upvote 0
I highly doubt this is possible due to CORS. You will need indeed a server-side part like BANanoServer to do that. EDIT: and even that would only work for static websites. For most you will need a server side renderer. Node.js is probably your best bet.
tchart Well-Known Member Licensed User Longtime User Aug 19, 2021 #5 @Mashiane do you need a scraper or crawler? I have a B4J library that will crawl a site. Its based on the Java code here; http://www.netinstructions.com/how-to-make-a-simple-web-crawler-in-java/ Upvote 0
@Mashiane do you need a scraper or crawler? I have a B4J library that will crawl a site. Its based on the Java code here; http://www.netinstructions.com/how-to-make-a-simple-web-crawler-in-java/