{"id":52369,"date":"2014-04-10T08:15:25","date_gmt":"2014-04-10T06:15:25","guid":{"rendered":"https:\/\/www.humanlevel.com\/sin-categorizar\/como-medir-los-clicks-sobre-los-botones-sociales.html"},"modified":"2014-04-10T08:06:00","modified_gmt":"2014-04-10T06:06:00","slug":"how-to-measure-clicks-on-social-buttons","status":"publish","type":"post","link":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons","title":{"rendered":"How to measure clicks on social buttons"},"content":{"rendered":"<div id=\"toc_container\" class=\"no_bullets\"><p class=\"toc_title\">Index<\/p><ul class=\"toc_list\"><li><a href=\"#Facebook\">Facebook<\/a><\/li><li><a href=\"#Twitter\">Twitter<\/a><\/li><li><a href=\"#LinkedIn\">LinkedIn<\/a><\/li><li><a href=\"#Pinterest\">Pinterest<\/a><\/li><li><a href=\"#Google\">Google +<\/a><\/li><li><a href=\"#Analyzing_the_data_received_in_Analytics\">Analyzing the data received in Analytics<\/a><\/li><\/ul><\/div>\n<p>Social networks are already part of our lives. Most people log on to these at least once a day to check for updates and information shared by friends, companies or people specializing in a particular topic.<\/p>\n<p>To make it easier for people to share (or &#8220;Like&#8221;, &#8220;Tweet&#8221;, +1, etc.) content published on websites, social networks created social buttons. Currently, we can find these social buttons on most portals.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-13675\" src=\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/botones-sociales.jpg\" alt=\"SOCIAL BUTTONS\" width=\"329\" height=\"75\" \/><\/p>\n<p><strong>Just as important as having these buttons on our website to spread the content we publish, is to measure the number of times it is shared on social networks.<\/strong>This allows us to know which articles or topics are of most interest to people and to continue producing content related to these topics.<\/p>\n<p><strong>The most convenient way to measure and compare this data is to integrate it into Analytics<\/strong>. By default, Analytics records the +1s that are made on the Google Plus button, but if we want to record interactions with the buttons of other social networks we have to implement it programmatically.<\/p>\n<p><strong>Analytics provides a way to send information about interactions with social media buttons and it is by using the &#8220;_trackSocial&#8221; method<\/strong> which has the following format:<\/p>\n<pre><code>_gaq.push(['_trackSocial', network, socialAction, opt_target, opt_pagePath]);<\/code><\/pre>\n<p>Where the parameters represent:<\/p>\n<ul>\n<li><strong>network<\/strong>: Text string representing the social network.<\/li>\n<li><strong>socialAction<\/strong>: Text string representing the action performed on the button (Like, Tweet, Share&#8230;).<\/li>\n<li><strong>opt_target<\/strong>: URL of the page that receives the social action. This parameter is optional, if not specified it takes the current page.<\/li>\n<li><strong>opt_pagePath<\/strong>: Path of the page that receives the social action. Same as URL but without the domain. This parameter is optional, if not specified it takes the current page.<\/li>\n<\/ul>\n<p>Next, I&#8217;m going to show you <strong>how to log interactions on Facebook, Twitter, LinkedIn and Pinterest<\/strong>.<\/p>\n<h2><span id=\"Facebook\">Facebook<\/span><\/h2>\n<p>To be able to record the social actions that our users perform with destination Facebook, we have to use their JavaScript <a title=\"Information about Facebook SDK\" href=\"https:\/\/developers.facebook.com\/docs\/javascript\/quickstart\" target=\"_blank\" rel=\"noopener noreferrer\">SDK<\/a> instead of using the button version in an iframe.<\/p>\n<p>To load the SDK, we have to insert this div:<\/p>\n<pre><code> &lt;div id=\"fb-root\"&gt;&lt;\/div&gt;<\/code><\/pre>\n<p>somewhere on &lt;body&gt; preferably at the end. The Facebook SDK needs it to load some elements when using Internet Explorer.<\/p>\n<p>Next, we assign a function to a property of the JavaScript window object, which will be called when the Facebook SDK is loaded. From this function we can initialize the Facebook framework and tell it to register it in Analytics when the event indicating that a &#8220;Like&#8221; button has been clicked is triggered.<\/p>\n<pre><code>window.fbAsyncInit = function() {\r\n  FB.init({\r\n    appId      : null,\r\n    status     : true,\r\n    xfbml      : true\r\n  });\r\n  \/\/ ME GUSTA\r\n  FB.Event.subscribe('edge.create', function(targetUrl) {\r\n   <strong> _gaq.push(['_trackSocial', 'facebook', 'like']);<\/strong>\r\n  });\r\n  \/\/ NO ME GUSTA\r\n  FB.Event.subscribe('edge.remove', function(targetUrl) {\r\n    <strong>_gaq.push(['_trackSocial', 'facebook', 'unlike']);<\/strong>\r\n  });\r\n  \/\/ COMPARTIR\r\n  FB.Event.subscribe('message.send', function(targetUrl) {\r\n    <strong>_gaq.push(['_trackSocial', 'facebook', 'send']);<\/strong>\r\n  });\r\n};<\/code><\/pre>\n<p>After declaring the function, we load the Facebook SDK after the rest of the page has loaded so as not to interrupt downloads of other web elements.<\/p>\n<pre><code>window.onload = function(){\r\nfunction(d, s, id){\r\n         var js, fjs = d.getElementsByTagName(s)[0];\r\n         if (d.getElementById(id)) {return;}\r\n         js = d.createElement(s); \r\n         js.id = id;\r\n         js.src = \"\/\/connect.facebook.net\/es_ES\/all.js\";\r\n         fjs.parentNode.insertBefore(js, fjs);\r\n       }(document, 'script', 'facebook-jssdk'));\r\n};<\/code><\/pre>\n<p>We only need to add a div where we want the &#8220;Like&#8221; button to appear on our page.<\/p>\n<pre><code>&lt;div class=\"fb-like\" data-send=\"true\" data-width=\"450\" data-show-faces=\"true\"&gt;&lt;\/div&gt;<\/code><\/pre>\n<h2><span id=\"Twitter\">Twitter<\/span><\/h2>\n<p>To send the actions on the Twitter buttons we have to follow similar steps to those of Facebook.<\/p>\n<p>We load and assign the Twitter widget framework to a property of the JavaScript window object.<\/p>\n<pre><code>window.twttr = (function (d,s,id) {\r\n  var t, js, fjs = d.getElementsByTagName(s)[0];\r\n  if (d.getElementById(id)) \r\n    return; \r\n  js=d.createElement(s);\r\n  js.id=id;\r\n  js.src=\"\/\/platform.twitter.com\/widgets.js\"; \r\n  fjs.parentNode.insertBefore(js, fjs);\r\n  return window.twttr || (t = { _e: [], ready: function(f){ t._e.push(f) } });\r\n}(document, \"script\", \"twitter-wjs\"));<\/code><\/pre>\n<p>Once the script is loaded, the &#8220;ready&#8221; function of the object that we have returned when loading the Twitter framework will be called, inside this function we must assign the functions that will handle the events when a &#8220;Tweet&#8221; is made to send it to Analytics.<\/p>\n<pre><code>twttr.ready(function (twttr) {\r\n    \/\/ TWEET\r\n    twttr.events.bind('tweet', function() { \r\n      <strong>_gaq.push(['_trackSocial', 'twitter', 'tweet']);<\/strong>\r\n    });\r\n    \/\/ RETWEET\r\n    twttr.events.bind('retweet', function() { \r\n      <strong>_gaq.push(['_trackSocial', 'twitter', 'retweet']);<\/strong>\r\n    });\r\n    \/\/ FAVORITE\r\n    twttr.events.bind('favorite', function() { \r\n      <strong>_gaq.push(['_trackSocial', 'twitter', 'favorite']);<\/strong>\r\n    });\r\n    \/\/ FOLLOW\r\n    twttr.events.bind('follow', function() { \r\n      <strong>_gaq.push(['_trackSocial', 'twitter', 'follow']);<\/strong>\r\n    });\r\n});<\/code><\/pre>\n<p>All that remains is to enter the link where we want the &#8220;Tweet&#8221; button to appear.<\/p>\n<pre><code>&lt;a href=\"https:\/\/twitter.com\/share\" class=\"twitter-share-button\" data-lang=\"es\" data-count=\"vertical\"&gt;Tweet&lt;\/a&gt;\r\n<\/code><\/pre>\n<h2><span id=\"LinkedIn\">LinkedIn<\/span><\/h2>\n<p>LinkedIn also allows you to capture an event that indicates that the page has been shared. To do this, we must specify in the &#8220;data-onsucess&#8221; attribute of the &lt;script&gt; that loads the button the name of the function that will handle the event, in this case &#8220;LinkedInShare&#8221;.<\/p>\n<pre><code>&lt;script type=\"IN\/Share\" data-counter=\"right\" data-onsuccess=\"LinkedInShare\"&gt;&lt;\/script&gt;<\/code><\/pre>\n<p>Next, we define the &#8220;LinkedInShare&#8221; function that will be called when they click on the LinkedIn share button.<\/p>\n<pre><code>function LinkedInShare() {\r\n  <strong>_gaq.push(['_trackSocial', 'linkedin', 'share']);<\/strong>\r\n}<\/code><\/pre>\n<p>Finally, we only need to load the LinkedIn framework.<\/p>\n<pre><code>(function() {\r\n  var i = document.createElement('script');\r\n  i.src = 'http:\/\/platform.linkedin.com\/in.js';\r\n  var s = document.getElementsByTagName('script')[0];\r\n  s.parentNode.insertBefore(i, s);\r\n})();\r\n<\/code><\/pre>\n<h2><span id=\"Pinterest\">Pinterest<\/span><\/h2>\n<p>Currently, Pinterest does not allow you to register the action of &#8220;pinning&#8221; as it does not have a public API to capture the event.<\/p>\n<p>One solution until Pinterest releases its API, is to capture the clicks that are made on the button, even though this does not represent that they have finally shared on Pinterest.<\/p>\n<pre><code>&lt;span onclick=\"<strong>_gaq.push(['_trackSocial', 'pinterest', 'pin']);<\/strong>\"&gt;\r\n  &lt;a href=\"\/\/www.pinterest.com\/pin\/create\/button\/\" data-pin-do=\"buttonBookmark\" &gt;\r\n    &lt;img src=\"\/\/assets.pinterest.com\/images\/pidgets\/pinit_fg_en_rect_gray_20.png\" \/&gt;\r\n  &lt;\/a&gt;\r\n&lt;\/span&gt;<\/code><\/pre>\n<p>Later, we loaded the Pinterest script.<\/p>\n<pre><code>(function() {\r\nvar pi = document.createElement('script');\r\npi.src = '\/\/assets.pinterest.com\/js\/pinit.js';\r\nvar s = document.getElementsByTagName('script')[0];\r\ns.parentNode.insertBefore(pi, s);\r\n})();<\/code><\/pre>\n<h2><span id=\"Google\">Google +<\/span><\/h2>\n<p>If you use Universal Analytics the +1s are not captured by default, so you will also have to do it manually. To do this, the Google Plus button follows the same strategy as with the LinkedIn button.<\/p>\n<p>We specify in the button the function that will have to be called when +1 is done, for this we use the &#8220;callback&#8221; parameter.<\/p>\n<pre><code>&lt;g:plusone size=\"tall\" callback=\"TrackGooglePlus\"&gt;&lt;\/g:plusone&gt;<\/code><\/pre>\n<p>We define the TrackGooglePlus function that sends the +1s to Analytics.<\/p>\n<pre><code>function TrackGooglePlus() {\r\n  <strong>_gaq.push(['_trackSocial', 'google', '+1']);<\/strong>\r\n}<\/code><\/pre>\n<p>And we load the Google Plus script.<\/p>\n<pre><code>window.___gcfg = {lang: 'es'};\r\n(function() {\r\n  var po = document.createElement('script');\r\n  po.src = 'https:\/\/apis.google.com\/js\/platform.js';\r\n  var s = document.getElementsByTagName('script')[0];\r\n  s.parentNode.insertBefore(po, s);\r\n})();<\/code><\/pre>\n<h2><span id=\"Analyzing_the_data_received_in_Analytics\">Analyzing the data received in Analytics<\/span><\/h2>\n<p>Once all the social network buttons have been installed and configured, the only thing left to do is to view the data collected in Analytics. To do so, go to &#8220;Acquisition&#8221; -&gt; &#8220;Social&#8221; -&gt; &#8220;Add-ons&#8221;.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-post-photo wp-image-13674\" src=\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/analytics-570x356.jpg\" alt=\"analytics social media\" width=\"570\" height=\"356\" \/><\/p>\n<p>From this section, we can see which pages have been shared, in which social network our content has been shared the most and which social action (&#8220;Like&#8221;, &#8220;Tweet&#8221;, &#8230;) has been done the most times.<\/p>\n<p><strong>Don&#8217;t have social button tracking implemented on your website yet?<\/strong><\/p>\n<style><!-- pre{overflow-x:auto;overflow-y:hidden;padding:5px;background:#fafafa;border:solid 1px #ddd}--><\/style>\n","protected":false},"excerpt":{"rendered":"<p>IndexFacebookTwitterLinkedInPinterestGoogle +Analyzing the data received in Analytics Social networks are already part of our lives. Most people log on to these at least once a day to check for updates and information shared by friends, companies or people specializing in a particular topic. To make it easier for people to share (or &#8220;Like&#8221;, &#8220;Tweet&#8221;, +1, [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":44802,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[349],"tags":[416],"class_list":["post-52369","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-seo","tag-seo-tools","entry"],"yoast_head":"\n<title>How to measure clicks on social buttons<\/title>\n<meta name=\"description\" content=\"In this article I explain how to measure the actions performed on the &quot;Like&quot;, &quot;Tweet&quot;, &quot;+1&quot;, &quot;Pin it&quot; buttons....\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to measure clicks on social buttons\" \/>\n<meta property=\"og:description\" content=\"In this article I explain how to measure the actions performed on the &quot;Like&quot;, &quot;Tweet&quot;, &quot;+1&quot;, &quot;Pin it&quot; buttons....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons\" \/>\n<meta property=\"og:site_name\" content=\"Human Level\" \/>\n<meta property=\"article:published_time\" content=\"2014-04-10T06:15:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"270\" \/>\n\t<meta property=\"og:image:height\" content=\"270\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Juan Pedro Catal\u00e1\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@humanlevel\" \/>\n<meta name=\"twitter:site\" content=\"@humanlevel\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Juan Pedro Catal\u00e1\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons\"},\"author\":{\"name\":\"Juan Pedro Catal\u00e1\",\"@id\":\"https:\/\/www.humanlevel.com\/en#\/schema\/person\/a3017b3be2f453478ccde37eea4a316e\"},\"headline\":\"How to measure clicks on social buttons\",\"datePublished\":\"2014-04-10T06:15:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons\"},\"wordCount\":862,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.humanlevel.com\/en#organization\"},\"image\":{\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg\",\"keywords\":[\"SEO Tools\"],\"articleSection\":[\"SEO\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons\",\"url\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons\",\"name\":\"How to measure clicks on social buttons\",\"isPartOf\":{\"@id\":\"https:\/\/www.humanlevel.com\/en#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg\",\"datePublished\":\"2014-04-10T06:15:25+00:00\",\"description\":\"In this article I explain how to measure the actions performed on the \\\"Like\\\", \\\"Tweet\\\", \\\"+1\\\", \\\"Pin it\\\" buttons....\",\"breadcrumb\":{\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#primaryimage\",\"url\":\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg\",\"contentUrl\":\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg\",\"width\":270,\"height\":270},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/www.humanlevel.com\/en\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to measure clicks on social buttons\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.humanlevel.com\/en#website\",\"url\":\"https:\/\/www.humanlevel.com\/en\",\"name\":\"Human Level\",\"description\":\"Web positioning and online marketing consultant Human Level\",\"publisher\":{\"@id\":\"https:\/\/www.humanlevel.com\/en#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.humanlevel.com\/en?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.humanlevel.com\/en#organization\",\"name\":\"Human Level\",\"url\":\"https:\/\/www.humanlevel.com\/en\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.humanlevel.com\/en#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/logo-human-negro-1.jpg\",\"contentUrl\":\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/logo-human-negro-1.jpg\",\"width\":268,\"height\":51,\"caption\":\"Human Level\"},\"image\":{\"@id\":\"https:\/\/www.humanlevel.com\/en#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/humanlevel\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.humanlevel.com\/en#\/schema\/person\/a3017b3be2f453478ccde37eea4a316e\",\"name\":\"Juan Pedro Catal\u00e1\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.humanlevel.com\/en#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/00d73b28fe00978008dd0f2a66ebaac422441ad1b85c53e8c422a01b2bd47dee?s=96&d=simple_local_avatar&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/00d73b28fe00978008dd0f2a66ebaac422441ad1b85c53e8c422a01b2bd47dee?s=96&d=simple_local_avatar&r=g\",\"caption\":\"Juan Pedro Catal\u00e1\"},\"description\":\"Fue desarrollador web senior en Human Level. Graduado en Ingenier\u00eda T\u00e9cnica en Inform\u00e1tica de Gesti\u00f3n. Posteriormente realiz\u00f3 un M\u00e1ster en Desarrollo de Aplicaciones y Servicios Web. Especialista en desarrollo web, e-commerce y motores de reserva.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/juanpecatala\/\"],\"url\":\"https:\/\/www.humanlevel.com\/en\/author\/juan\"}]}<\/script>\n","yoast_head_json":{"title":"How to measure clicks on social buttons","description":"In this article I explain how to measure the actions performed on the \"Like\", \"Tweet\", \"+1\", \"Pin it\" buttons....","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons","og_locale":"en_US","og_type":"article","og_title":"How to measure clicks on social buttons","og_description":"In this article I explain how to measure the actions performed on the \"Like\", \"Tweet\", \"+1\", \"Pin it\" buttons....","og_url":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons","og_site_name":"Human Level","article_published_time":"2014-04-10T06:15:25+00:00","og_image":[{"width":270,"height":270,"url":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg","type":"image\/jpeg"}],"author":"Juan Pedro Catal\u00e1","twitter_card":"summary_large_image","twitter_creator":"@humanlevel","twitter_site":"@humanlevel","twitter_misc":{"Written by":"Juan Pedro Catal\u00e1","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#article","isPartOf":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons"},"author":{"name":"Juan Pedro Catal\u00e1","@id":"https:\/\/www.humanlevel.com\/en#\/schema\/person\/a3017b3be2f453478ccde37eea4a316e"},"headline":"How to measure clicks on social buttons","datePublished":"2014-04-10T06:15:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons"},"wordCount":862,"commentCount":0,"publisher":{"@id":"https:\/\/www.humanlevel.com\/en#organization"},"image":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#primaryimage"},"thumbnailUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg","keywords":["SEO Tools"],"articleSection":["SEO"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons","url":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons","name":"How to measure clicks on social buttons","isPartOf":{"@id":"https:\/\/www.humanlevel.com\/en#website"},"primaryImageOfPage":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#primaryimage"},"image":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#primaryimage"},"thumbnailUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg","datePublished":"2014-04-10T06:15:25+00:00","description":"In this article I explain how to measure the actions performed on the \"Like\", \"Tweet\", \"+1\", \"Pin it\" buttons....","breadcrumb":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#primaryimage","url":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg","contentUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/admin-ajax.jpg","width":270,"height":270},{"@type":"BreadcrumbList","@id":"https:\/\/www.humanlevel.com\/en\/blog\/seo\/how-to-measure-clicks-on-social-buttons#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/www.humanlevel.com\/en"},{"@type":"ListItem","position":2,"name":"How to measure clicks on social buttons"}]},{"@type":"WebSite","@id":"https:\/\/www.humanlevel.com\/en#website","url":"https:\/\/www.humanlevel.com\/en","name":"Human Level","description":"Web positioning and online marketing consultant Human Level","publisher":{"@id":"https:\/\/www.humanlevel.com\/en#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.humanlevel.com\/en?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.humanlevel.com\/en#organization","name":"Human Level","url":"https:\/\/www.humanlevel.com\/en","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.humanlevel.com\/en#\/schema\/logo\/image\/","url":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/logo-human-negro-1.jpg","contentUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/logo-human-negro-1.jpg","width":268,"height":51,"caption":"Human Level"},"image":{"@id":"https:\/\/www.humanlevel.com\/en#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/humanlevel"]},{"@type":"Person","@id":"https:\/\/www.humanlevel.com\/en#\/schema\/person\/a3017b3be2f453478ccde37eea4a316e","name":"Juan Pedro Catal\u00e1","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.humanlevel.com\/en#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/00d73b28fe00978008dd0f2a66ebaac422441ad1b85c53e8c422a01b2bd47dee?s=96&d=simple_local_avatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/00d73b28fe00978008dd0f2a66ebaac422441ad1b85c53e8c422a01b2bd47dee?s=96&d=simple_local_avatar&r=g","caption":"Juan Pedro Catal\u00e1"},"description":"Fue desarrollador web senior en Human Level. Graduado en Ingenier\u00eda T\u00e9cnica en Inform\u00e1tica de Gesti\u00f3n. Posteriormente realiz\u00f3 un M\u00e1ster en Desarrollo de Aplicaciones y Servicios Web. Especialista en desarrollo web, e-commerce y motores de reserva.","sameAs":["https:\/\/www.linkedin.com\/in\/juanpecatala\/"],"url":"https:\/\/www.humanlevel.com\/en\/author\/juan"}]}},"_links":{"self":[{"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/posts\/52369","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/comments?post=52369"}],"version-history":[{"count":2,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/posts\/52369\/revisions"}],"predecessor-version":[{"id":52883,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/posts\/52369\/revisions\/52883"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/media\/44802"}],"wp:attachment":[{"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/media?parent=52369"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/categories?post=52369"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/tags?post=52369"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}