Mobile app version of vmapp.org
Login or Join
Vandalay111

: When using Google and Facebook for social login, how to prevent misattributed session referrers and goal conversions in Google Analytics? I am seeing quite a few conversions which have as source

@Vandalay111

Posted in: #Goals #GoogleAnalytics #Referrer #SocialLogin

I am seeing quite a few conversions which have as source "accounts.google.com" (almost 40%).

AFAIK, in the new Universal Analytics as soon as a user has a Referrer set a new session is started. So if a user is getting on my page, and creates an account using social auth (e.g. Google accounts) when being redirected back, will this create a new session?
I guess this would explain that there are many conversions coming from accounts.google.com - is it safe to enter accounts.google.com into the Referral Exclusion List? And more - what about Facebook logins, those would show up as facebook.com, but i probably don't want to exclude facebook.com as referrer?

Any ideas how to deal with UA referrers and social logins?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Vandalay111

1 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

I can confirm that Google Analytics will start a new session when the user comes back from logging in with the referrer from another site. I don't have as big a problem with it on my sites because not many of my users log in. From Google's referral exclusion documentation:


How excluding referral traffic affects your data

By default, a referral automatically triggers a new session. When you exclude a referral source, traffic that arrives to your site from the excluded domain doesn’t trigger a new session. If you want traffic arriving from a specific site to trigger a new session, don't include that domain in this table.

Because each referral triggers a new session, excluding referrals (or not excluding referrals) affects how sessions are calculated in your account. The same interaction can be counted as either one or two sessions, based on how you treat referrals. For example, a user on my-site.com goes to your-site.com, and then returns to my-site.com. If you do not exclude your-site.com as a referring domain, two sessions are counted, one for each arrival at my-site.com. If, however, you exclude referrals from your-site.com, the second arrival to my-site.com does not trigger a new session, and only one session is counted.


So putting accounts.google.com in the referral exclusion list would solve the problem for Google login, but as you say, you can't do that for Facebook.

The only solution that I can think of would be to strip the referrer when the user comes back, before the Google Analytics JavaScript can get to it. On my site, I redirect when I get the login information from Google or Facebook. Before, I used a 302 redirect that passes the referrer data. I changed it to a meta refresh redirect to remove the external referrer:

<html>
<head>
<meta http-equiv="refresh" content="0; url=/after-login.html">
</head>
<body>
</body>
</html>


It strips the referrer entirely in Firefox and IE. In Chrome, Opera, and Safari, the referrer changes to the refresh URL (which would be from your site).

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme