检查 Android 设备是否正在执行 http-post
我正在开发一个应用程序,它正在我的 webbserver 上将 http-post 发送到 php-file。我的问题是是否可以执行检查(在 php 内)来控制帖子是否由 Android 设备完成,我知道我可以生成某种密钥,但我的应用程序的第一个版本已经存在,并且我不希望它对那些人有效。使用 $_REMOTE[] 对象的最佳方法是还是有其他方法?
谢谢
I am developing an app which is doing a http-post to php-file on my webbserver. My question is if it is possible to perform a check (within php) which controls that the post is done by an android device, I know I can generate som sort of key, but the first version of my app is already out there, and I wan't it to be valid for those to. Is the best way to go with a $_REMOTE[] object or is there another way?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
并不真地。您可以检查“User-Agent”,但如果您没有自定义它,它可能会显示一些通用内容,例如“Apache-HttpClient/UNAVAILABLE(java 1.4)”。另请记住,任何人都可以设置任何 User-Agent 标头,因此这并不能保证。
Not really. You can check the "User-Agent", but if you didn't customize it, it will probably say something generic such as "Apache-HttpClient/UNAVAILABLE(java 1.4)". Also keep in mind, that anyone can set any User-Agent header, so that's not a guarantee.