Ask HN: How do mashups avoid copyright infringement lawsuits?
Why do we not see more intellectual property lawsuits as a result of these recent applications of screen scraping?
I was looking at the Wikipedia entry for web scraping:
http://en.wikipedia.org/wiki/Web_scraping
Under the "Legal Issues" section it talks about the tort issue called "Trespass To Chattels" which covers a wide variety of computer trespass crimes, including web scraping but from what I can tell there are very few recent lawsuits with respect to web scraping. The big one was Ticketmaster vs Tickets.com but that was back in 2000:
http://www.tomwbell.com/NetLaw/Ch07/Ticketmaster.html
Sites like popurls, alltop, google news, aggregate data from other news sites. According to copyright law, this should be permissable as long as the quote is limited and not a complete republication. These sites seem to follow this guideline.
But are there other recent sites that do not, who you would expect to fall afoul of the law? How do they avoid litigation - by asking the originating site for permission to republish? By paying the content owners for the privilege to republish? Or has the commonness of the Web2.0ish way of regurgitating content made this a moot issue by now - to the point where most original content owners have given up on trying to control the ownership of their content through litigation?
18 comments
[ 3.4 ms ] story [ 16.8 ms ] threadBut no, I probably wouldn't do it personally. There's a tradeoff there, in that on one hand you're increasing your odds of success (potentially) by building on the backs of services that you know people want. On the other hand, there's some chance that if you're successful there will be a lawsuit.
Whoa, my head is spinning.
In other words, usually a startup will be able to make a deal with the content owners which will allow the startup to survive. But I agree it's a risky ballpark to play in. One potentially big advantage, though, is if you're an unknown, this can raise your profile. So, even if this venture is unprofitable because of the legal costs and eventual revenue sharing with the content owners, by working on something that gains traction, you can leverage this reputation and experience on a future venture, which may put you in a more advantageous position than someone starting out from zero.
Or the energy sucked out of you from the lawsuit might make you want to leave the field entirely.
I believe Y! still unofficially ignore the scraping of our address books because it was adding value to our users even though the services that did it broke our Ts&Cs and used the username/password anti-pattern.
In the future I think it will be more likely that we'll clamp down on that stuff because there is OAuth to authenticate with.
However the main point is because it added value to our users we let the scrapers get away with it.
That's the civil way.
"It is often easier to ask for forgiveness than to ask for permission." -- Grace Hopper
In reality any reproduction of content is a violation of copyright law- no if, ands, or buts about it. Even Google's act of displaying text from web pages in their search results is infringement but of course they are safe because they are so useful and the web would be nothing without search engines. But there is no implicit permission being given.
The same rule likely applies to mashups (although I do not know of any that have been taken to court.) Why litigate if an app helps users consume your content (there are exceptions of course. For example, if page views on your actual site decrease and you lose money as a result.)
Google can display text from web pages because they attribute the text to the site and provide a link to the original source. There are limitations on use which is why google paid for their book search functionality.
The NYT is about to find out the answer to this question:
http://news.cnet.com/8301-1023_3-10128600-93.html
I still stand by my statement and the only reason search engines are allowed to copy petabytes of COPYRIGHTED material is because they are so darn useful. I don't know of any other service that sidesteps intellectual property rights (whether through fair use or not) and makes a good amount of money that has been allowed to exist and thrive.
Flickr is all about sharing and it tries pretty hard to give the users tools to control access to data and to express their licensing intent. For example, as much as is possible, there is simply no trace of private data in searches that don't have proper authorization. For public data, it is not a given that you can republish or modify the work. So the atom feeds have links to the licenses for each photo or video, and the API has similar features when obtaining photo info.
Users are able to grant a mashup app access to their private data in a formalized way (and to revoke it later). Finally, Flickr is also able to revoke the rights of any particular app to download data or simply throttle them to a reasonable amount per day.
All sites that offer RSS or an API should do these sorts of things. (The oAuth standard is a formalization of some of the techniques that sites like Flickr use.)