Server side omniture page tracking
up vote
0
down vote
favorite
we use omniture to track page visits in our site. It works well. However, we have a scenario where we have some redirect links that redirect to a different website over which we have no control.
Example, I am on page A and it has a link to a redirect page B (in the same domain). However, when user clicks on the link to page B, the page B redirects the user at the server side to a different website.
How can we track page visits for page B? I tried using s.tl method. However, is there a way to track redirect page B visit similar to a regular page in site site?
adobe-analytics
|
show 1 more comment
up vote
0
down vote
favorite
we use omniture to track page visits in our site. It works well. However, we have a scenario where we have some redirect links that redirect to a different website over which we have no control.
Example, I am on page A and it has a link to a redirect page B (in the same domain). However, when user clicks on the link to page B, the page B redirects the user at the server side to a different website.
How can we track page visits for page B? I tried using s.tl method. However, is there a way to track redirect page B visit similar to a regular page in site site?
adobe-analytics
I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
– Crayon Violent
Nov 10 at 21:04
Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
– Nataraj Gandhi arunachalam
Nov 11 at 3:16
I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
– Crayon Violent
Nov 11 at 3:35
Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
– Nataraj Gandhi arunachalam
Nov 11 at 18:44
Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
– Crayon Violent
Nov 13 at 3:11
|
show 1 more comment
up vote
0
down vote
favorite
up vote
0
down vote
favorite
we use omniture to track page visits in our site. It works well. However, we have a scenario where we have some redirect links that redirect to a different website over which we have no control.
Example, I am on page A and it has a link to a redirect page B (in the same domain). However, when user clicks on the link to page B, the page B redirects the user at the server side to a different website.
How can we track page visits for page B? I tried using s.tl method. However, is there a way to track redirect page B visit similar to a regular page in site site?
adobe-analytics
we use omniture to track page visits in our site. It works well. However, we have a scenario where we have some redirect links that redirect to a different website over which we have no control.
Example, I am on page A and it has a link to a redirect page B (in the same domain). However, when user clicks on the link to page B, the page B redirects the user at the server side to a different website.
How can we track page visits for page B? I tried using s.tl method. However, is there a way to track redirect page B visit similar to a regular page in site site?
adobe-analytics
adobe-analytics
asked Nov 9 at 20:49
Nataraj Gandhi arunachalam
11
11
I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
– Crayon Violent
Nov 10 at 21:04
Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
– Nataraj Gandhi arunachalam
Nov 11 at 3:16
I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
– Crayon Violent
Nov 11 at 3:35
Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
– Nataraj Gandhi arunachalam
Nov 11 at 18:44
Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
– Crayon Violent
Nov 13 at 3:11
|
show 1 more comment
I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
– Crayon Violent
Nov 10 at 21:04
Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
– Nataraj Gandhi arunachalam
Nov 11 at 3:16
I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
– Crayon Violent
Nov 11 at 3:35
Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
– Nataraj Gandhi arunachalam
Nov 11 at 18:44
Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
– Crayon Violent
Nov 13 at 3:11
I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
– Crayon Violent
Nov 10 at 21:04
I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
– Crayon Violent
Nov 10 at 21:04
Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
– Nataraj Gandhi arunachalam
Nov 11 at 3:16
Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
– Nataraj Gandhi arunachalam
Nov 11 at 3:16
I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
– Crayon Violent
Nov 11 at 3:35
I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
– Crayon Violent
Nov 11 at 3:35
Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
– Nataraj Gandhi arunachalam
Nov 11 at 18:44
Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
– Nataraj Gandhi arunachalam
Nov 11 at 18:44
Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
– Crayon Violent
Nov 13 at 3:11
Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
– Crayon Violent
Nov 13 at 3:11
|
show 1 more comment
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233070%2fserver-side-omniture-page-tracking%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
– Crayon Violent
Nov 10 at 21:04
Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
– Nataraj Gandhi arunachalam
Nov 11 at 3:16
I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
– Crayon Violent
Nov 11 at 3:35
Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
– Nataraj Gandhi arunachalam
Nov 11 at 18:44
Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
– Crayon Violent
Nov 13 at 3:11