适用于 iPhone 的 Omniture 应用程序测量

发布于 2024-09-30 03:32:54 字数 376 浏览 1 评论 0原文

有人可以帮助了解 Omniture 的应用程序测量 iphone 库的实施细节吗?我已将开发库和发布库链接到我的应用程序中,我使用单例方法(getInstance)实例化它们,并且它们在实例上调用“track”方法......沿着这些思路。

OMAppMeasurement *s = [OMAppMeasurement getInstance];
s.account = @"";
s.debugTracking = YES;
[s track];

我在仪表板上看不到任何数据,s.account 有一个值,但我不确定我是否提供了正确的值。有人可以确认该值应该是多少吗?我在这里错过了一些基本的东西,据我所知,我正在遵循本书的(非常非常简单)在线文档。有人可以帮忙吗?

Could someone please help with implementation details for Omniture's app measurement iphone library ? I have linked both the dev and release libraries into my app, I instantiate them using the singleton method (getInstance) and they call the 'track' method on the instance....something along these lines.

OMAppMeasurement *s = [OMAppMeasurement getInstance];
s.account = @"";
s.debugTracking = YES;
[s track];

I cannot see any data on my dashboards, the s.account has a value, but I'm not sure if I'm supplying the correct one. Could some confirm what that value should be? I'm I missing out something fundamental here, as far as I can see I'm following the (very very light )online documentation by the book. Could someone help ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

热风软妹 2024-10-07 03:32:54

帐户名称是报表包名称。据我了解,您必须从掌握有关 sitecatalyst 帐户信息的任何人那里获取此信息。我收到了,但在 sitecatalyst 中仍然找不到报告的数据。你有什么进步吗?
这是我使用的代码。

//Instantiate instance
OMAppMeasurement * s = [OMAppMeasurement getInstance]; 
//Setup application config variables 
s.account = @"string"; 
//s.ssl = YES;

//Omniture
OMAppMeasurement * s = [OMAppMeasurement getInstance];
//Set Variables
s.pageName = @"CategoryController"; 
s.channel = @"CategoryController";
//clears any previously set value for channel 
s.prop1 = @"CategoryController";
//clears any previously set value for prop1 
s.debugTracking = YES;
[s track];

The account name is the report suite name. From what I understand you have to get this from whoever has information about the sitecatalyst account. I got it, but still cannot find the reported data within sitecatalyst. Did you make any progress?
This is the code I use.

//Instantiate instance
OMAppMeasurement * s = [OMAppMeasurement getInstance]; 
//Setup application config variables 
s.account = @"string"; 
//s.ssl = YES;

//Omniture
OMAppMeasurement * s = [OMAppMeasurement getInstance];
//Set Variables
s.pageName = @"CategoryController"; 
s.channel = @"CategoryController";
//clears any previously set value for channel 
s.prop1 = @"CategoryController";
//clears any previously set value for prop1 
s.debugTracking = YES;
[s track];
雪化雨蝶 2024-10-07 03:32:54

s.account 值是创建报表包时设置的 ReportSuiteID。
您可以在“管理”->“ReportSuite”页面中 ReportSuiteName 右侧的位置找到它。

克劳迪奥.

the s.account value is the ReportSuiteID setted at the creation of the report suite.
You can find it in the Admin->ReportSuite page on the right sie of the ReportSuiteName.

Claudio.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文