Dan Lorenc
Dan Lorenc

Reputation: 5394

Facebook Google Analytics

I'm having some trouble getting Google Analytics to work with Facebook, has anyone here gotten this to work? Facebook provides the tag in FBML, but it doesn't seem to do anything. I've added it at the bottom of my document, and the status never changes from Tracking Not Installed in Google Analytics.

I'm using this in a Django-based web app. Here's the relevant portion of the template I'm using.

<fb:header icon="false">
    {% block title %}
    {% endblock %}
</fb:header>

{% block main %}
{% endblock %}

<fb:google-analytics uacct="UA-XXXXXXX" />

Upvotes: 1

Views: 2251

Answers (1)

Pasta
Pasta

Reputation: 2491

To use Google Analytics within a non canvas pages. Use this workaround http://www.webdigi.co.uk/blog/2010/google-analytics-for-facebook-fan-pages/ by this web development company.

This works on Facebook pages and can potentially work on other places where Javascript is not enabled.

Upvotes: 1

Related Questions