-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Omniture API to report events? #19
Comments
@sferoze I understand your confusion and I agree their docs aren't the most straight forward. There isn't an npm package that I'm aware of that handles implementing Omniture on the front end. This is mainly because it's a fairly custom process and a framework or package wouldn't do much for you. Using this https://marketing.adobe.com/resources/help/en_US/sc/implement/appmeasure_mjs_pagecode.html as a guide, I'll walk you through a couple steps to get started. You should be able to download or have been given a file called The only thing you'll need to edit is the The There are 4 main types of properties I use when tracking: eVars have a number appended to the end so you would have A simple example would be storing the location of where a user signed up for your newsletter. Would set something like this:
The next property, events are usually incrementors. They keep track of how many times a thing happened. Like eVars, events have a number appended to them. ( We could use an event to track how many times users have signed up for our newsletter.
the
This will let you track how many users came to your site from that link. The last one is
Or if your an ecommerce site and you may have As a final example let's put it all together. An example user comes to the site and signs up for the newsletter in the footer on your homepage. You would have something like the following code:
The This is a fairly simple example but it should be enough to get your feet wet. If you have an ecommerce site there are a few other properties that you'll want to set on product and checkout pages. One last thing to note, if your in Omniture looking at reports. Hopefully that gets you going in the right direction. |
@imartingraham woww thanks soo much! Our client really wants us to use Omniture or Adobe Analytics and I was tearing my hair out trying to figure out how to use this thing. Your post is a great quick start example. I hope others in need are able to find this post. Thanks again. |
Hello,
I am really confused by this and other omniture npm libraries.
Omniture is a competitor to Google Analytics correct?
So far it seems like they are geared around getting reports from Omniture.
But how do you setup your app in the first place to report events and page views to Omniture.
No npm package shows how to do this, and their docs are terrible. What's going on? Can I use this npm package to setup Analytics reporting to Omniture?
The text was updated successfully, but these errors were encountered: