auth0-analytics
v1.3.1
Published
[![Build status][circleci-image]][circleci-url] [![License][license-image]][license-url]
Downloads
25
Maintainers
Keywords
Readme
Auth0 Analytics (Web)
This library adds Facebook and Google analytics integrations to Lock.
Usage
<script src="https://cdn.auth0.com/js/lock/11.0.0/lock.min.js"></script>
<script src="https://cdn.auth0.com/js/analytics/X.Y.Z/analytics.min.js"></script>
Notice: The script version above uses a placeholder version
X.Y.Z
. In order to determine the latest release view the releases. For example, to reference release1.2.0
usehttps://cdn.auth0.com/js/analytics/1.2.0/analytics.min.js
Optional Configuration
If you want to disable either the Facbeook or Google Analytics integrations you can do so with the optional configuration.
Note: This must be placed on the page before the analytics script is loaded.
<script>
window.auth0AnalyticsOptions = {
'facebook-analytics': {
id: 'YOUR_FACEBOOK_APP_ID'
}
}
</script>
If you already have the Facebook JS SDK on your page you can set the script to use that.
<script>
window.auth0AnalyticsOptions = {
'facebook-analytics': {
preloaded: true
}
}
</script>