Sending social interactions via measurement protocol in Google Analytics
Last Updated: May 30, 2020
This article is related to measurement protocol in Google Analytics.
If you are brand new to measurement protocol, then read this article first: Understanding Google Analytics measurement protocol.
In this article, I will show you how to send social interaction data (Facebook likes, Twitter tweets, etc) via measurement protocol.
In Google Analytics, social interactions (or social network interactions) can mean:
- Facebook likes
- Facebook unlikes
- Twitter Tweets
- Twitter Follows
- Twitter Retweet
- Twitter Clicks, etc.
These social interactions are measured by tracking the number of times a user clicks on social sharing buttons embedded on a web page.
Social interactions are made up of the following type of data in Google Analytics:
#1 socialNetwork – the social network on which the interaction occurred.
#2 socialAction – the type of social interaction that occurred.
#3 socialTarget – URL of the web page where the social interaction occurred. The value of socialTarget is usually a URL but it can also be any string.
The socialNetwork field can have the following values:
- Twitter
- Facebook
- LinkedIn
- Disqus
- Stack Overflow
- Pocket
- it
- Quora
- Netvibes etc
The socialAction field can have the following values:
- like
- unlike
- click
- tweet
- follow
- retweet etc
In order to send social interactions data via measurement protocol, use the following protocol parameters (in addition to the four required parameters) in the payload data:
#1 Social Action
Social Action is denoted by the ‘sa’ parameter. The value of this parameter should be a text string. For example:
sa=like
As in:
v=1&t=social&tid=UA-1500844-34&cid=4bae429a-8589-4d89-91d9-c3f45f2b58e2&sa=like
&sn=facebook&st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
#2 Social Network
Social network is denoted by ‘sn’ parameter. The value of this parameter should be a text string. For example:
sn=facebook
As in:
v=1&t=social&tid=UA-1500844-34&cid=4bae429a-8589-4d89-91d9-c3f45f2b58e2&
sa=like&sn=facebook&st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
#3 Social Target
Social target is denoted by ‘st’ parameter. The value of this parameter should be a URL encoded text string. For example:
st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
As in:
v=1&t=social&tid=UA-1500844-34&cid=4bae429a-8589-4d89-91d9-c3f45f2b58e2&sa=like&
sn=facebook&st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
Once you have created the payload data, ask your developer to write an application (program) which make the following similar HTTP POST request to the GA server:
User-Agent: user_agent_string
POST https://www.google-analytics.com/collect?payload_data
For example:
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36
POST https://www.google-analytics.com/collect?v=1&t=social&tid=UA-1500844-34&
cid=4bae429a-8589-4d89-91d9-c3f45f2b58e2&sa=like&sn=facebook&
st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
This HTTP POST request will send the payload data (which contains the social interactions data) to Google Analytics.
Other articles on measurement protocol
- Sending pageview data via measurement protocol in Google Analytics
- Sending campaign data via measurement protocol in Google Analytics
- Sending event data via measurement protocol in Google Analytics
- Sending ecommerce data via measurement protocol in Google Analytics
- Creating and validating measurement protocol requests through postman
- Understanding measurement protocol validation server
Last Updated: May 30, 2020
This article is related to measurement protocol in Google Analytics.
If you are brand new to measurement protocol, then read this article first: Understanding Google Analytics measurement protocol.
In this article, I will show you how to send social interaction data (Facebook likes, Twitter tweets, etc) via measurement protocol.
In Google Analytics, social interactions (or social network interactions) can mean:
- Facebook likes
- Facebook unlikes
- Twitter Tweets
- Twitter Follows
- Twitter Retweet
- Twitter Clicks, etc.
These social interactions are measured by tracking the number of times a user clicks on social sharing buttons embedded on a web page.
Social interactions are made up of the following type of data in Google Analytics:
#1 socialNetwork – the social network on which the interaction occurred.
#2 socialAction – the type of social interaction that occurred.
#3 socialTarget – URL of the web page where the social interaction occurred. The value of socialTarget is usually a URL but it can also be any string.
The socialNetwork field can have the following values:
- Disqus
- Stack Overflow
- it
- Quora
- Netvibes etc
The socialAction field can have the following values:
- like
- unlike
- click
- tweet
- follow
- retweet etc
In order to send social interactions data via measurement protocol, use the following protocol parameters (in addition to the four required parameters) in the payload data:
#1 Social Action
Social Action is denoted by the ‘sa’ parameter. The value of this parameter should be a text string. For example:
sa=like
As in:
v=1&t=social&tid=UA-1500844-34&cid=4bae429a-8589-4d89-91d9-c3f45f2b58e2&sa=like
&sn=facebook&st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
#2 Social Network
Social network is denoted by ‘sn’ parameter. The value of this parameter should be a text string. For example:
sn=facebook
As in:
v=1&t=social&tid=UA-1500844-34&cid=4bae429a-8589-4d89-91d9-c3f45f2b58e2&
sa=like&sn=facebook&st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
#3 Social Target
Social target is denoted by ‘st’ parameter. The value of this parameter should be a URL encoded text string. For example:
st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
As in:
v=1&t=social&tid=UA-1500844-34&cid=4bae429a-8589-4d89-91d9-c3f45f2b58e2&sa=like&
sn=facebook&st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
Once you have created the payload data, ask your developer to write an application (program) which make the following similar HTTP POST request to the GA server:
User-Agent: user_agent_string
POST https://www.google-analytics.com/collect?payload_data
For example:
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69 Safari/537.36
POST https://www.google-analytics.com/collect?v=1&t=social&tid=UA-1500844-34&
cid=4bae429a-8589-4d89-91d9-c3f45f2b58e2&sa=like&sn=facebook&
st=https%3A%2F%2Fwww.optimizesmart.com%2Fanalytics-consultation%2F
This HTTP POST request will send the payload data (which contains the social interactions data) to Google Analytics.
Other articles on measurement protocol
- Sending pageview data via measurement protocol in Google Analytics
- Sending campaign data via measurement protocol in Google Analytics
- Sending event data via measurement protocol in Google Analytics
- Sending ecommerce data via measurement protocol in Google Analytics
- Creating and validating measurement protocol requests through postman
- Understanding measurement protocol validation server
Register for the FREE TRAINING...
"How to use Digital Analytics to generate floods of new Sales and Customers without spending years figuring everything out on your own."
Here’s what we’re going to cover in this training…
#1 Why digital analytics is the key to online business success.
#2 The number 1 reason why most marketers are not able to scale their advertising and maximize sales.
#3 Why Google and Facebook ads don’t work for most businesses & how to make them work.
#4 Why you won’t get any competitive advantage in the marketplace just by knowing Google Analytics.
#5 The number 1 reason why conversion optimization is not working for your business.
#6 How to advertise on any marketing platform for FREE with an unlimited budget.
#7 How to learn and master digital analytics and conversion optimization in record time.
My best selling books on Digital Analytics and Conversion Optimization
Maths and Stats for Web Analytics and Conversion Optimization
This expert guide will teach you how to leverage the knowledge of maths and statistics in order to accurately interpret data and take actions, which can quickly improve the bottom-line of your online business.
Master the Essentials of Email Marketing Analytics
This book focuses solely on the ‘analytics’ that power your email marketing optimization program and will help you dramatically reduce your cost per acquisition and increase marketing ROI by tracking the performance of the various KPIs and metrics used for email marketing.
Attribution Modelling in Google Analytics and BeyondSECOND EDITION OUT NOW!
Attribution modelling is the process of determining the most effective marketing channels for investment. This book has been written to help you implement attribution modelling. It will teach you how to leverage the knowledge of attribution modelling in order to allocate marketing budget and understand buying behaviour.
Attribution Modelling in Google Ads and Facebook
This book has been written to help you implement attribution modelling in Google Ads (Google AdWords) and Facebook. It will teach you, how to leverage the knowledge of attribution modelling in order to understand the customer purchasing journey and determine the most effective marketing channels for investment.