社交分享与应用程序集成并向网络服务报告
我正在为客户开发一个应用程序,它可以通过 Twitter 和 Facebook 社交共享客户的产品。
我成功地在 Twitter 和 Facebook 中实现了共享功能,并且我还必须在 Web 服务中为这些共享实现报告功能。为此,我认为这些步骤就足够了:
1)在 NSUserDefaults 中保留每个平台的用户唯一 ID
2)每当用户成功共享内容时,打开 NSUrlConnection 到我的 Web 服务,并通知用户的唯一 ID 和共享内容 ID。
3)因此,在网络服务中,我可以跟踪共享内容。
这真的是一个好方法吗?或者,我应该采用另一种方法吗?
I'm developing an app for a client, which enables social sharing of client's product via twitter and facebook.
I successfully implemented sharing feature in twitter and facebook, and also I have to implemented report feature for these sharing in web service. To do this, I think these steps are sufficient:
1) Keep user's uniqueid for each platform in NSUserDefaults
2) Whenever user successfully shared content, Open NSUrlConnection to my web service and notified with user's unique id and shared content id.
3) Therefore, in web service, I can keep track of shared contents.
Is this really a good approach? Or, should I follow another approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用一个分析框架来做这样的事情。我曾使用 Flurry 和 Google Analytics 来处理类似的事情。他们都已经构建了可以连接到他们的网络服务的 SDK。它们非常容易集成。
Flurry 是我个人的最爱。
I would use an analytics framework for something like this. I've used Flurry and Google Analytics for stuff like this. They both already have SDKs built that will connect to their web services. They are very easy to integrate.
Flurry is my personal favorite.