Even though I only do it for hobby projects, crawling pages is becoming increasingly difficult unless you are a big player like Google or Microsoft with a whitelisted IP range. I've had some success in scraping lately with a similar project called FlareSolverr(1). It's purpose it to get you access to sites which won't let you crawl unless you are using a real browser (e.g amazon, instagram). It doesn't hide your IP b…
Doesn't Amazon have an API? Why everyone wants to scrape Amazon? Honest question.
Cloudproxy – hide your scrapers IP behind the cloud
61–70 of 116 posts
Re: Cloudproxy – hide your scrapers IP behind the cloud
#62Earlier quoted context omitted.
There have been a number of Chrome extensions which monetize by selling your bandwidth to provide this kind of service. Not ethical but probably not a compromise.
Browser extensions, and VPNs. Notably, Luminati was allegedly selling HolaVPN users as exit nodes. https://www.trendmicro.com/vinfo/hk-en/security/news/cybercr...
It’s such a weird field to be in. It’s not illegal by definition of law, but you’re definitely in shady territory, with most of the customers being of the “get rich quick” persuasion. Or at the very least trying to cut corners. One way or another, they were not playing by the rules ;-)
Re: Cloudproxy – hide your scrapers IP behind the cloud
#63Even though I only do it for hobby projects, crawling pages is becoming increasingly difficult unless you are a big player like Google or Microsoft with a whitelisted IP range. I've had some success in scraping lately with a similar project called FlareSolverr(1). It's purpose it to get you access to sites which won't let you crawl unless you are using a real browser (e.g amazon, instagram). It doesn't hide your IP b…
Doesn't Amazon have an API? Why everyone wants to scrape Amazon? Honest question.
The main benefit of using the API is that you can request a LOT of data without hitting their rate limit. Unless you need to get dozens of results per second, you are usually better off with a spider (or just use Huginn). And if you are hit with a 503 and a captcha, gluing a free captcha solver with some middleware is a trivial task.
Re: Cloudproxy – hide your scrapers IP behind the cloud
#64Even though I only do it for hobby projects, crawling pages is becoming increasingly difficult unless you are a big player like Google or Microsoft with a whitelisted IP range. I've had some success in scraping lately with a similar project called FlareSolverr(1). It's purpose it to get you access to sites which won't let you crawl unless you are using a real browser (e.g amazon, instagram). It doesn't hide your IP b…
For one pet project I had to crawl a rather popular site. While that worked in general I would frequently get internal server errors. Turns out that this was the response of their CDN when it detected bot-like behavior. That left me wondering how they prevent search engine crawlers from being detected as bots and getting throttled this way as well. Turns out they just check the user agent for that. As soon as I put "…
https://developers.google.com/search/docs/advanced/crawling/...
Re: Cloudproxy – hide your scrapers IP behind the cloud
#65If your scraper behaves, perhaps it would not be blocked…
Re: Cloudproxy – hide your scrapers IP behind the cloud
#66Earlier quoted context omitted.
Doesn't Amazon have an API? Why everyone wants to scrape Amazon? Honest question.
Amazon's marketplace APIs are available to developers who register through a seller account. Pricing is $40 per month. The main benefit of using the API is that you can request a LOT of data without hitting their rate limit. Unless you need to get dozens of results per second, you are usually better off with a spider (or just use Huginn). And if you are hit with a 503 and a captcha, gluing a free captcha solver with…
Re: Cloudproxy – hide your scrapers IP behind the cloud
#67Earlier quoted context omitted.
Doesn't Amazon have an API? Why everyone wants to scrape Amazon? Honest question.
Yes, all their product data is available for affiliates: https://webservices.amazon.com/paapi5/documentation/
Re: Cloudproxy – hide your scrapers IP behind the cloud
#68Even though I only do it for hobby projects, crawling pages is becoming increasingly difficult unless you are a big player like Google or Microsoft with a whitelisted IP range. I've had some success in scraping lately with a similar project called FlareSolverr(1). It's purpose it to get you access to sites which won't let you crawl unless you are using a real browser (e.g amazon, instagram). It doesn't hide your IP b…
Re: Cloudproxy – hide your scrapers IP behind the cloud
#69Earlier quoted context omitted.
I used to have a similar attitude - most typically applied to rules & laws, etc. “If you don’t like the rule, go run for office and get the law changed.” But then I realized that’s just a cop out. A lot of structures and systems are in place specifically to make it difficult for people to change things and specifically to maintain monopolies. Nobody’s going to lobby government to resolve this issue. That’s the point.…
In the analog age, imagine someone made a card index of some interesting data you can come in a shop to consult, for a fee. Would breaking into their premises to steal or copy the cards be on the same side of the line as the digital variant?
So the question is: would you consider that stealing?
Re: Cloudproxy – hide your scrapers IP behind the cloud
#70Earlier quoted context omitted.
Amazon's marketplace APIs are available to developers who register through a seller account. Pricing is $40 per month. The main benefit of using the API is that you can request a LOT of data without hitting their rate limit. Unless you need to get dozens of results per second, you are usually better off with a spider (or just use Huginn). And if you are hit with a 503 and a captcha, gluing a free captcha solver with…
But other comments say scraping Amazon is kind of complicated because they ban IPs? I am not sure if you have a seller / affiliate account and then use your home IP to do scaping, will that impact your seller / affiliate account ?
Also, in my experience Amazon's "ban" comes down to solving a captcha on every request, so it's more like some mild throttling than a real ban.