适用于 iPhone 的 Omniture 应用程序测量
有人可以帮助了解 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
帐户名称是报表包名称。据我了解,您必须从掌握有关 sitecatalyst 帐户信息的任何人那里获取此信息。我收到了,但在 sitecatalyst 中仍然找不到报告的数据。你有什么进步吗?
这是我使用的代码。
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.
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.