<head>...</head>
section of your website:<script type="text/javascript" src="//[your-subdomain].api.oneall.com/integration/google-analytics.js"></script>
Please sign in to your OneAll account to ask a new question or to contribute to the discussions.
Please click on the link below to connect to the forum with your OneAll account.
Answers
Where in Google Analytics will these start to show up? What is tracked? How do I make signing in a goal?
What exactly do you mean by goal?
Goals are a Google Analytics concept (https://support.google.com/analytics/answer/1012040?hl=en). They can be done by URL accesses or pushed using their send() function. I would like to make logging in with oneall a Goal in Google Analytics.
you can simply add a new event and trigger it when the user logs in:
http://docs.oneall.com/api/javascript/library/methods/#sll_add_event
Something like this
<script type="text/javascript"> var my_function = function(args) { // Add the code to push your goal here } var _oneall = _oneall || []; _oneall.push(['social_login', 'add_event', 'on_login_end_success', my_function]); /script>
The code needs to be added to the sourcecode of your website.