Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do sites like Hubspot track inbound links?

Are all these types of sites just illegally scraping Google or another search engine?
As far as I can tell ther is no 'legal' way to get this data for a commercial site.. The Yahoo! api ( http://developer.yahoo.com/search/siteexplorer/V1/inlinkData.html ) is only for noncommercial use, Yahoo! Boss does not allow automated queries etc.
Any ideas?

like image 950
lpellis Avatar asked Dec 12 '08 04:12

lpellis


People also ask

How does HubSpot landing page track clicks?

In your HubSpot account, click the settings settings icon in the main navigation bar. In the left sidebar menu, navigate to Tracking & Analytics > Tracking URLs. In the upper right, click Create tracking URL. In the right panel, set up your tracking URL.

How do inbound links work?

Inbound links, also known as backlinks, occur when another website links back to your site. Google views inbound links as an indicator that your site has high-quality content, making these links one of the most important elements in search engine optimization (SEO).

What does HubSpot tracking code track?

In addition to tracking page views, the HubSpot tracking code allows you to identify visitors, track events, and manually track page views without reloading the page. The tracking code API allows you to dynamically create events and track event data in HubSpot.


1 Answers

For example, if you wanted to find all the links to Google's homepage, search for

link:http://www.google.com

So if you want to find all the inbound links, you can simply traverse your website's tree, and for each item it finds, build a URL. Then query Google for:

link:URL

And you'll get a collection of all the links that Google has from other websites into your website.

As for the legality of such harvesting, I'm sure it's not-exactly-legal to make a profit from it, but that's never stopped anyone before, has it?

(So I wouldn't bother wondering whether they did it or not. Just assume they do.)

like image 109
Shalom Craimer Avatar answered Oct 04 '22 03:10

Shalom Craimer