0

我有以下关于 adobe omniture 的问题

  1. 我们如何注册 iPhone 应用程序
  2. 我们如何查看我们的 iPhone 应用程序的所有曲目或报告
  3. 什么是 s.account 以及我们如何从 omiture 中获取它

    omn​​iture = [[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;
    

    然后当然是我的事件

    NSMutableDictionary *trackData = [[NSMutableDictionary alloc]init]; for (NSDictionary *datadict in eventData) {

        [trackData setValue:[datadict objectForKey:@"value"] forKey:[datadict objectForKey:@"event"]];
    
    }
    [omniture track:trackData];
    

任何小的帮助将不胜感激。

4

1 回答 1

2

To answer your questions:

  1. You do not need to register an iPhone app with Omniture. Implementing code to send data to SiteCatalyst is enough to populate their reports.
  2. In order to view reports that your app is sending to Adobe's data collection servers, you must login to the Digital Marketing Suite interface at http://my.omniture.com.
  3. The s.account variable determines the report suite ID you send data to. A report suite ID tells Adobe's servers which reports to populate. To locate the report suite ID, login to SiteCatalyst and go to Admin | Admin Console | Report Suites. From there you will see the full list of report suites with their associated IDs.
于 2012-06-19T22:52:36.433 回答