Earlier quoted context omitted.
Accessing otherwise publicly accessible data with a different user agent is neither illegal nor unethical.
I don’t see why “publicly accessible data” is relevant: if I want to scrape my Facebook news feed and consume it as an RSS feed, I don’t see any justification for preventing me from doing this. The fact that I can see someone’s post in my web browser means I’m authorized to access that post.
The Legality of Web Scraping
21–30 of 35 posts
Re: The Legality of Web Scraping
#22Earlier quoted context omitted.
I don’t see why “publicly accessible data” is relevant: if I want to scrape my Facebook news feed and consume it as an RSS feed, I don’t see any justification for preventing me from doing this. The fact that I can see someone’s post in my web browser means I’m authorized to access that post.
The difference is when you created a Facebook account and logged in using your username & password you agreed to their terms of service.
Re: The Legality of Web Scraping
#23I’ve never understood why using a different user agent should make a difference. Ethically, if I can see the data in a web browser, I already have access to it and no one has any business dictating to me the programs I may use to access that data.
Re: The Legality of Web Scraping
#24Earlier quoted context omitted.
The difference is when you created a Facebook account and logged in using your username & password you agreed to their terms of service.
A document no one reads can’t really be a contract, regardless of what the law says.
Re: The Legality of Web Scraping
#25Earlier quoted context omitted.
Yeah. Why does a website operator care if I use a browser to view it or a script to extract some specific bit of data? It makes absolutely no sense to me.
Because you can't be targeted for ads if you don't see them. You are their product, and they want to enforce the parameters of your relationship with them.
> You are their product, and they want to enforce the parameters of your relationship with them.
They're in for a shock then. I'm not a passive "product" to be sold to advertisers. Treating human beings like that is abuse.
Re: The Legality of Web Scraping
#26Re: The Legality of Web Scraping
#27I’ve never understood why using a different user agent should make a difference. Ethically, if I can see the data in a web browser, I already have access to it and no one has any business dictating to me the programs I may use to access that data.
I mean, since you’ve brought ethics into it.
Re: The Legality of Web Scraping
#28I’ve never understood why using a different user agent should make a difference. Ethically, if I can see the data in a web browser, I already have access to it and no one has any business dictating to me the programs I may use to access that data.
If your scraping program is fetching data at a similar rate and in a similar way to a browser, then yes, it shouldn't make any difference to the website owner. But most scraping programs are not like that. A web browser is fetching data for a human to read; that means it is not going to, for example, fetch a thousand pages from your website in just a few seconds using many parallel connections. But many scraping prog…
I like to use sitemaps to download websites. I only use a single TCP connection and HTTP/1.1 pipelining. This can of take several successive requests depending on the number of URLs and the website's request limit per connection. For example, Akin Gump's sitemap has 9174 URLs and allows at least 2000 requests per connection. OTOH, I have downloaded sites with more URLs than that in a single connection. Pipelining is slower than parallel connections, more akin to downloading a large file. Some websites are faster than others.
According to the original RFCs, this is the proper netiquette. Even though the practice is of using parallel connections is widespread, I have never been able to find an RFC that advocated that. Popular browsers today open dozens of connections. All in the name of advertising.
I take the absence of a sitemap as an indication the website owner may have issues with automated data retrieval. For example, LinkedIn has no sitemap. However, most websites I encounter have sitemaps. Downloading websites without using parallel connections is not difficult. I do not need special software, only a small binary written in C to generate HTTP and a netcat. (Neither curl nor wget nor similar clients can do HTTP/1.1 pipelining.) I do not use a user-agent header. I have a filter I wrote for chunk transfer doecoding from stdin.
Re: The Legality of Web Scraping
#29Earlier quoted context omitted.
Well sadly what the law says matters
Are you sure? Doesn't courts typically throw out cases where companies try to argue that those are binding?
Re: The Legality of Web Scraping
#30I’ve never understood why using a different user agent should make a difference. Ethically, if I can see the data in a web browser, I already have access to it and no one has any business dictating to me the programs I may use to access that data.
Someone on the other side is offering you a service by providing that data. They may literally have a business, and it may be in their business's best interest to dictate how you access that data. They can filter your UA, they can rate limit, they can ban you, etc.
Realistically, if the way you consume and use their public data affects their revenue, they can (and should) act to protect their income.