iOS PHP通讯
我需要将数据从手机发送到服务器。我不需要加密它们。我只需要确保数据来自我的应用程序,而不是来自刷新浏览器的人。我该怎么办呢。请给我一些想法。
I need to send data from my phone to my server. I don't need to encrypt them.I just need to be sure that the data comes from my app and not from someone refreshing the browser. How can I do this. Please give me some ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您只需要身份验证,最好的方法是使用应用上的私钥对数据进行签名,并使用公钥验证签名> 在服务器上。
If you just want authentication, the best way would be to sign the data with a private key on your app and verify the signature with the public key on the server.
不确定我完全理解你的问题,但建议你看看 ASIHTTPRequest
http://allseeing-i.com/ASIHTTPRequest /
或者标准的 NSURLConnection
Not sure I understand fully your question but recommend you take a look at ASIHTTPRequest
http://allseeing-i.com/ASIHTTPRequest/
Or the standard NSURLConnection
一个简单的方法是添加自定义 http 标头并在服务器端脚本中验证相同的内容。
这至少会减少数量。没有适合工作的工具的人。
A simple method would be adding custom http header and validate the same in the server side script.
This will at least reduce no. of ppl who don't have right tools for the job.