{"id":8026,"date":"2017-08-22T10:08:42","date_gmt":"2017-08-22T10:08:42","guid":{"rendered":"https:\/\/xpon.ai\/?p=8026"},"modified":"2023-08-09T04:39:02","modified_gmt":"2023-08-09T04:39:02","slug":"google-analytics-cross-domain-tracking-excluding-subdomains","status":"publish","type":"post","link":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/","title":{"rendered":"Google Analytics Cross-Domain Tracking &#8211; Excluding unwanted domains"},"content":{"rendered":"<p>Tracking multiple websites with Google Analytics is easy. Just add the same tracking code snippet to your websites&#8217; pages (or use GTM) and you can see data for two websites with Cross-Domain Tracking in your GA reports &#8211; check the <em>Hostname<\/em> dimension if you don&#8217;t believe it!<\/p>\n<p>This can be useful if, let&#8217;s say your website&#8217;s shop hostname is <em>www.mybusiness.com,<\/em> and you redirect your customers to <em>checkout.mybusinessshop.com<\/em> to complete their purchase. Placing Google Analytics code on both domains will send the data covering the whole customer experience on your digital properties. That&#8217;s what we want, right? However, you will quickly discover that all your transactions have the same session source which is <em>www.mybusiness.com \/ referral<\/em>. This makes perfect sense as people only visit your checkout domain using the links on your original domain. But this hides the real traffic source! How can you quantify your marketing efforts per acquisition channel?<\/p>\n<p><strong>Google Analytics Cross-Domain Tracking<\/strong> comes to the rescue. You need to tell Google Analytics that the customer experience on these two hostnames needs to be consolidated into a single Session and treated accordingly.<\/p>\n<h4><strong>Cross-Domain Tracking setup checklist<\/strong><\/h4>\n<ul>\n<li>Make sure your <a title=\"Google Analytics Cross-Domain tracking\" href=\"https:\/\/developers.google.com\/analytics\/devguides\/collection\/analyticsjs\/field-reference#cookieDomain\" target=\"_blank\" rel=\"nofollow noopener\"><em>cookieDomain<\/em><\/a> field is set to auto. If you are not sure &#8211; just set it to auto and let GA handle it (see Cross-Domain Tracking for subdomains section below).<br \/>\nIf you do know what this is for &#8211; then I am sure you are using it the right way!<\/li>\n<li>Make sure you are using the <a title=\"Google Analytics Cross-domain Tracking - autolinker plugin\" href=\"https:\/\/developers.google.com\/analytics\/devguides\/collection\/analyticsjs\/linker\" target=\"_blank\" rel=\"nofollow noopener\">autolinker<\/a> plugin. This Google Analytics plugin provided by Google adds a few characters to the link to make sure Google Analytics &#8220;recognises&#8221; and consolidates sessions between websites\n<ul>\n<li>The plugin needs to be explicitly told which domain names to use, for example:<br \/>\n<code style=\"font-family: Consolas, Courier, monospace;\">ga<em>('require', 'linker');<\/em><br \/>\nga<em>('linker:<\/em>autoLink<em>', ['www.mybusiness.com','checkout.mybusinessshop.com','shop.mybusiness.com']);<\/em><\/code><\/li>\n<li>GTM configuration follows similar logic<\/li>\n<\/ul>\n<\/li>\n<li>Make sure you list all the hostnames in the Google Analytics Property settings: Referral Exclusion List<\/li>\n<li>That&#8217;s it!<\/li>\n<\/ul>\n<h4><strong>Google Analytics Cross-Domain Tracking for subdomains<\/strong><\/h4>\n<p>If you would like to consolidate customer experience on two subdomains, for example: <em>www.mybusiness.com<\/em> and <em>shop.mybusiness.com,<\/em> the good news is that it is done automatically for you! You just need to use the recommended Google Analytics code snippet which sets the <a href=\"https:\/\/xpon.ai\/?page_id=7202\"><em>cookieDomain<\/em> field to <em>auto<\/em>.<\/a> If you have modified the GA code snippet or are using GTM to tag your website, please make sure you manually set the <em>cookieDomain<\/em> field to auto.<\/p>\n<h4><strong>A little bit more technical spice<\/strong><\/h4>\n<p>Above, I have briefly explained what Google Analytics Cross-Domain Tracking is and how to use it. The implementation is pretty straightforward and widely covered on the Internet. In most cases, you would use the autolinker plugin to work its magic. The core of the Cross-domain Tracking is a parameter and its value added to the destination URL (query string). The parameter may look like this: <code style=\"font-family: Consolas, Courier, monospace;\"><em>_ga=1.199239214.1624002396.1440697407<\/em><\/code>. Once the user reaches the second domain, GA code on the page will read the parameter, &#8220;recognise&#8221; the user and consolidate the session. If the link domain (hostname) matches the pattern specified in the plugin configuration, the autolinker plugin automatically adds this parameter.<\/p>\n<p><code style=\"font-family: Consolas, Courier, monospace;\">ga<em>('linker:<\/em>autoLink<em>', ['www.mybusiness.com','checkout.mybusinessshop.com','shop.mybusiness.com']);<\/em><\/code><\/p>\n<p>For those of you who know JavaScript (and I encourage everyone to do this!), there is an array of hostnames which is sent to the autolinker plugin configuration. When a user clicks on the link on the page, the autolinker plugin checks if the link points to one of the hostnames specified in the configuration and, if it does, adds the <em>_ga<\/em> parameter. Important to note: this parameter is only valid for two minutes, so if anyone copies the link and uses it later, sessions won&#8217;t be joined in GA.<\/p>\n<p>A little trick here is that <a href=\"https:\/\/support.google.com\/analytics\/answer\/10227574?hl=en\">hostname matching<\/a> is done using the substring, so specifying the mybusiness.com would match both www.mybusiness.com and shop.mybusiness.com. Which is convenient &#8211; less typing.<\/p>\n<h3><strong>Excluding hostnames from cross-domain tracking<\/strong><\/h3>\n<p>Recently, I had a client with lots of subdomains and requirements, mature enough to implement the Cross-Domain Tracking for all of them except for a few. Data still had to be sent to the same GA property, but user experience on these subdomains was not be consolidated and left as separate sessions. There were 50+subdomains and an obvious solutionwasto list them all explicitly (remembering that autolinker plugin matches hostname by substring) and NOT listing hostnames which need to be excluded on every page. However this solution had lots of drawbacks. Another option was to implement manual linkage or in terms of the Cross-Domain Tracking to decorate links (generate and append _ga parameter to the link URL). The hacker inside me insisted on injecting my code (installing a hook) into the autolinker plugin with a custom hostname matching logic.<\/p>\n<p>But before doing so, I did a little digging, actually read the documentation and paid proper attention. Guess what? I discovered that the autolinker plugin actually expects <em>Regular Expressions<\/em> and not just a string as a parameter!<\/p>\n<p><img decoding=\"async\" class=\"leftAlone aligncenter\" title=\"\" src=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/ResizedImage869443-Linker-Analytics-for-Web-analytics.js-Google-Developers-Google-Chrom-2017-07-25-14-13-11.png\" alt=\"Google_Analytics_Cross_Domain_Tracking_-_Excluding_unwanted_domains_image_1\" width=\"869\" height=\"443\" \/><\/p>\n<p>All that was left was to create a negative match Regular Expression to tell Google Analytics Cross Domain Tracking NOT to track specific hostname. Consider the Regular Expression below:<\/p>\n<p><code style=\"font-family: Consolas, Courier, monospace;\">^(?!ignore.)(.*)mybusiness.com.au|(mymegabusiness.com.au)|(checkout.mybusinessshop.com.au)<\/code><\/p>\n<p>This will match <em>mymegabusiness.com.au<\/em>, <em>checkout.mybusinessshop.com.au<\/em> and any subdomain of the <em>mybusiness.com<\/em> except for <em>ignore.mybusiness.com.au<\/em><\/p>\n<p>So the resulting Google Analytics autolinker plugin configuration looked like this:<\/p>\n<p><code style=\"font-family: Consolas, Courier, monospace;\">ga<em>('linker:autoLink', [<strong>\/<\/strong><strong>^(?!ignore.)(.*)mybusiness.com.au|(mymegabusiness.com.au)|(checkout.mybusinessshop.com.au)\/gi<\/strong>, 'destination.com.au');<\/em><\/code><\/p>\n<p>Works like a charm. Lesson learned &#8211; now I pay more attention to the documentation!<\/p>\n<h4><strong>Need help with your Google Analytics? Talk to us.<\/strong><\/h4>\n<p>Live Chat, or email us if you would like us to share our Google Analytics skills, case studies, and knowledge to achieve your business goals and targets.<\/p>\n<p>XPON combines digital consulting with winning website design, smart website development and strong digital analytics and digital marketing skills to drive revenue or cut costs for our clients. We deliver web-based consulting, development and performance projects to customers across the Asia Pacific ranging from small business sole traders to ASX listed businesses and all levels of Australian government.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tracking multiple websites with Google Analytics is easy. Just add the same tracking code snippet to your websites&#8217; pages (or use GTM) and you can see data for two websites with Cross-Domain Tracking in your GA reports &#8211; check the Hostname dimension if you don&#8217;t believe it! This can be useful if, let&#8217;s say your [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":8623,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Cross-Domain Tracking","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"","_yoast_wpseo_meta-robots-noindex":"","_yoast_wpseo_meta-robots-nofollow":"","_yoast_wpseo_canonical":"","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[395],"tags":[453],"class_list":["post-8026","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog-gb","tag-marketing-technology-gb"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.2 (Yoast SEO v21.4) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Google Analytics Cross-Domain Tracking - Excluding unwanted domains | XPON Technologies | XPON UK<\/title>\n<meta name=\"description\" content=\"Tracking multiple websites with Google Analytics is easy. Just add the same tracking code snippet to your websites&#039; pages (or use GTM) and you can see | XPON UK\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts\/8026\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Google Analytics Cross-Domain Tracking - Excluding unwanted domains | XPON UK\" \/>\n<meta property=\"og:description\" content=\"Tracking multiple websites with Google Analytics is easy. Just add the same tracking code snippet to your websites&#039; pages (or use GTM) and you can see | XPON UK\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/\" \/>\n<meta property=\"og:site_name\" content=\"XPON Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/xpongroup\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-08-22T10:08:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-09T04:39:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/ResizedImage869443-Linker-Analytics-for-Web-analytics.js-Google-Developers-Google-Chrom-2017-07-25-14-13-11.png\" \/>\n\t<meta property=\"og:image:width\" content=\"869\" \/>\n\t<meta property=\"og:image:height\" content=\"443\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"XPON Technologies Group\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xpontech\" \/>\n<meta name=\"twitter:site\" content=\"@xpontech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XPON Technologies Group\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/\"},\"author\":{\"name\":\"XPON Technologies Group\",\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1\"},\"headline\":\"Google Analytics Cross-Domain Tracking &#8211; Excluding unwanted domains\",\"datePublished\":\"2017-08-22T10:08:42+00:00\",\"dateModified\":\"2023-08-09T04:39:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/\"},\"wordCount\":1000,\"publisher\":{\"@id\":\"https:\/\/xpon.ai\/gb\/#organization\"},\"keywords\":[\"Marketing Technology\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/\",\"url\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/\",\"name\":\"Google Analytics Cross-Domain Tracking - Excluding unwanted domains | XPON Technologies\",\"isPartOf\":{\"@id\":\"https:\/\/xpon.ai\/gb\/#website\"},\"datePublished\":\"2017-08-22T10:08:42+00:00\",\"dateModified\":\"2023-08-09T04:39:02+00:00\",\"description\":\"Tracking multiple websites with Google Analytics is easy. Just add the same tracking code snippet to your websites' pages (or use GTM) and you can see\",\"breadcrumb\":{\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xpon.ai\/gb\/?page_id=4049\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Google Analytics Cross-Domain Tracking &#8211; Excluding unwanted domains\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xpon.ai\/gb\/#website\",\"url\":\"https:\/\/xpon.ai\/gb\/\",\"name\":\"XPON Technologies\",\"description\":\"Technology &amp; cloud solutions to modernise marketing operations\",\"publisher\":{\"@id\":\"https:\/\/xpon.ai\/gb\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xpon.ai\/gb\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xpon.ai\/gb\/#organization\",\"name\":\"XPON Technologies\",\"alternateName\":\"XPON\",\"url\":\"https:\/\/xpon.ai\/gb\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png\",\"contentUrl\":\"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png\",\"width\":212,\"height\":212,\"caption\":\"XPON Technologies\"},\"image\":{\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/xpongroup\/\",\"https:\/\/twitter.com\/xpontech\",\"https:\/\/www.youtube.com\/@xpon\/videos\",\"https:\/\/au.linkedin.com\/company\/xpon-technologies\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1\",\"name\":\"XPON Technologies Group\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/xpon.ai\/gb\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g\",\"caption\":\"XPON Technologies Group\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Google Analytics Cross-Domain Tracking - Excluding unwanted domains | XPON Technologies | XPON UK","description":"Tracking multiple websites with Google Analytics is easy. Just add the same tracking code snippet to your websites' pages (or use GTM) and you can see | XPON UK","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:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts\/8026","og_locale":"en_GB","og_type":"article","og_title":"Google Analytics Cross-Domain Tracking - Excluding unwanted domains | XPON UK","og_description":"Tracking multiple websites with Google Analytics is easy. Just add the same tracking code snippet to your websites' pages (or use GTM) and you can see | XPON UK","og_url":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/","og_site_name":"XPON Technologies","article_publisher":"https:\/\/www.facebook.com\/xpongroup\/","article_published_time":"2017-08-22T10:08:42+00:00","article_modified_time":"2023-08-09T04:39:02+00:00","og_image":[{"width":869,"height":443,"url":"https:\/\/xpon.ai\/wp-content\/uploads\/2023\/02\/ResizedImage869443-Linker-Analytics-for-Web-analytics.js-Google-Developers-Google-Chrom-2017-07-25-14-13-11.png","type":"image\/png"}],"author":"XPON Technologies Group","twitter_card":"summary_large_image","twitter_creator":"@xpontech","twitter_site":"@xpontech","twitter_misc":{"Written by":"XPON Technologies Group","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/#article","isPartOf":{"@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/"},"author":{"name":"XPON Technologies Group","@id":"https:\/\/xpon.ai\/gb\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1"},"headline":"Google Analytics Cross-Domain Tracking &#8211; Excluding unwanted domains","datePublished":"2017-08-22T10:08:42+00:00","dateModified":"2023-08-09T04:39:02+00:00","mainEntityOfPage":{"@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/"},"wordCount":1000,"publisher":{"@id":"https:\/\/xpon.ai\/gb\/#organization"},"keywords":["Marketing Technology"],"articleSection":["Blog"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/","url":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/","name":"Google Analytics Cross-Domain Tracking - Excluding unwanted domains | XPON Technologies","isPartOf":{"@id":"https:\/\/xpon.ai\/gb\/#website"},"datePublished":"2017-08-22T10:08:42+00:00","dateModified":"2023-08-09T04:39:02+00:00","description":"Tracking multiple websites with Google Analytics is easy. Just add the same tracking code snippet to your websites' pages (or use GTM) and you can see","breadcrumb":{"@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/xpon.ai\/gb\/resources\/google-analytics-cross-domain-tracking-excluding-subdomains\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xpon.ai\/gb\/?page_id=4049"},{"@type":"ListItem","position":2,"name":"Google Analytics Cross-Domain Tracking &#8211; Excluding unwanted domains"}]},{"@type":"WebSite","@id":"https:\/\/xpon.ai\/gb\/#website","url":"https:\/\/xpon.ai\/gb\/","name":"XPON Technologies","description":"Technology &amp; cloud solutions to modernise marketing operations","publisher":{"@id":"https:\/\/xpon.ai\/gb\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xpon.ai\/gb\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/xpon.ai\/gb\/#organization","name":"XPON Technologies","alternateName":"XPON","url":"https:\/\/xpon.ai\/gb\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/xpon.ai\/gb\/#\/schema\/logo\/image\/","url":"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png","contentUrl":"https:\/\/xpon.ai\/wp-content\/uploads\/2026\/03\/XPON_logomark_RGB_medium.png","width":212,"height":212,"caption":"XPON Technologies"},"image":{"@id":"https:\/\/xpon.ai\/gb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/xpongroup\/","https:\/\/twitter.com\/xpontech","https:\/\/www.youtube.com\/@xpon\/videos","https:\/\/au.linkedin.com\/company\/xpon-technologies"]},{"@type":"Person","@id":"https:\/\/xpon.ai\/gb\/#\/schema\/person\/aa8c496cc9248f72a86ab557e0bed6e1","name":"XPON Technologies Group","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/xpon.ai\/gb\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/038bb62ee334e679305b3c014dd2e35151d0bb7f0c8350fe0f981035fdc10195?s=96&d=mm&r=g","caption":"XPON Technologies Group"}}]}},"_links":{"self":[{"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts\/8026","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/comments?post=8026"}],"version-history":[{"count":0,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/posts\/8026\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/media\/8623"}],"wp:attachment":[{"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/media?parent=8026"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/categories?post=8026"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xpon.ai\/gb\/wp-json\/wp\/v2\/tags?post=8026"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}