PhoneGap 的 Google Analytics Plugin 有一个示例应用程序,其中包含以下代码:
// Note: A request for permission is REQUIRED by google. You probably want to do this just once, though, and remember the answer for subsequent runs.
navigator.notification.confirm('GA_PLUGIN would like your permission to collect usage data. No personal or user identifiable data will be collected.', permissionCallback, 'Attention', 'Allow,Deny');
我查看了 Google Analytics 移动 SDK 文档(尽管我没有从头到尾阅读它们)并且无法找到此要求。我也没有在http://www.google.com/analytics/terms/us.html的服务条款中看到它。
我不介意请求最终用户的许可,但我当然不会在网站上这样做,而且我似乎也不记得在我已安装的应用程序中收到许多此类请求。
代码中的注释是否正确?