Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Referral URL Links from Sitecore Analytics or DMS

I would like to know is there any way to get the url links of referring sites.

For example: If someone shared an article link to my site on Facebook, using sitecore analytic is there a way for me to store or retrieve the link that was shared on Facebook, which brought the user to my site in the first place.

Any help will be much appreciated.

Thanks in advance,
Christina

like image 209
River Paul Avatar asked Dec 30 '25 19:12

River Paul


1 Answers

Each visit in DMS stores the URL of its referrer (if any) as a field in the database.

For instance, here's an SQL query that returns a list of referrers for all first visits (i.e. the visits that brought each visitor to your site for the first time).

SELECT DISTINCT
  Referrer
FROM
  Visits
WHERE
  VisitorVisitIndex = 1
  AND Referrer <> ''
like image 176
Dmytro Shevchenko Avatar answered Jan 05 '26 18:01

Dmytro Shevchenko



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!