iphone - How to register an app in adobe app measurement or adobe omniture? -
i have following question on adobe omniture
- how can register iphone app
- how can view tracks or report of our iphone app
what s.account , how can omiture
omniture = [[appmeasurement alloc] init];
omniture.account = @"mykey"; omniture.ssl = yes; omniture.trackingserversecure = @"myserver"; omniture.trackingserver = @"myserver"; omniture.currencycode = @"usd"; omniture.debugtracking = yes; omniture.offlinethrottledelay = [nsnumber numberwithint:0]; omniture.offlinelimit = [nsnumber numberwithint:300]; omniture.trackoffline = true; nsdictionary *chrummeasuredict = [configdata objectforkey:@"churnmeasure"]; churnmeasurement *c = [omniture getchurninstancepopulatedefaults:no]; [c setvaluesforkeyswithdictionary:chrummeasuredict]; omniture.usebestpractices = yes;
and of course on events have
nsmutabledictionary *trackdata = [[nsmutabledictionary alloc]init]; (nsdictionary *datadict in eventdata) {
[trackdata setvalue:[datadict objectforkey:@"value"] forkey:[datadict objectforkey:@"event"]]; } [omniture track:trackdata];
any small highly appreciated.
to answer questions:
- you not need register iphone app omniture. implementing code send data sitecatalyst enough populate reports.
- in order view reports app sending adobe's data collection servers, must login digital marketing suite interface @ http://my.omniture.com.
- the s.account variable determines report suite id send data to. report suite id tells adobe's servers reports populate. locate report suite id, login sitecatalyst , go admin | admin console | report suites. there see full list of report suites associated ids.
Comments
Post a Comment