混合 Ionic 应用程序中的 Amazon Pinpoint Analytics?
Amazon Pinpoint Analytics in hybrid Ionic app?
是否有人在 Ionic 或其他类型的混合移动应用程序中实施了 Amazon Pinpoint,特别是分析部分?我们想留在亚马逊上,但我看到在混合应用程序中使用的唯一方法是直接进行 REST 调用,这看起来很笨拙。
在此先感谢您的帮助。
我使用 AWS amplify SDK 在 Ionic 3 应用程序中集成了 Pinpoint 分析。
您需要将"Analytics"导入您的组件,然后您可以使用"record"方法将事件推送到Pinpoint。
// Import the AWS Stuff
import { Analytics } from 'aws-amplify';
然后在需要记录事件的地方使用
Analytics.record("SomeEvent");
这将在 Pinpoint Analytics 控制台中创建一个名为 "SomeEvent"(建议您使用更好的名称)的自定义事件,然后您可以在...上查看指标...
看这里https://aws-amplify.github.io/amplify-js/media/analytics_guide.html
我不需要打电话
Analytics.configure({...})
开箱即用。
是否有人在 Ionic 或其他类型的混合移动应用程序中实施了 Amazon Pinpoint,特别是分析部分?我们想留在亚马逊上,但我看到在混合应用程序中使用的唯一方法是直接进行 REST 调用,这看起来很笨拙。
在此先感谢您的帮助。
我使用 AWS amplify SDK 在 Ionic 3 应用程序中集成了 Pinpoint 分析。
您需要将"Analytics"导入您的组件,然后您可以使用"record"方法将事件推送到Pinpoint。
// Import the AWS Stuff
import { Analytics } from 'aws-amplify';
然后在需要记录事件的地方使用
Analytics.record("SomeEvent");
这将在 Pinpoint Analytics 控制台中创建一个名为 "SomeEvent"(建议您使用更好的名称)的自定义事件,然后您可以在...上查看指标...
看这里https://aws-amplify.github.io/amplify-js/media/analytics_guide.html
我不需要打电话
Analytics.configure({...})
开箱即用。