iphone - How to register an app in adobe app measurement or adobe omniture? -


i have following question on adobe omniture

  1. how can register iphone app
  2. how can view tracks or report of our iphone app
  3. 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:

  1. you not need register iphone app omniture. implementing code send data sitecatalyst enough populate reports.
  2. in order view reports app sending adobe's data collection servers, must login digital marketing suite interface @ http://my.omniture.com.
  3. 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

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -