iOS PHP通讯

发布于 2024-11-04 06:06:19 字数 77 浏览 1 评论 0原文

我需要将数据从手机发送到服务器。我不需要加密它们。我只需要确保数据来自我的应用程序,而不是来自刷新浏览器的人。我该怎么办呢。请给我一些想法。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

南城追梦 2024-11-11 06:06:19

如果您只需要身份验证,最好的方法是使用应用上的私钥对数据进行签名,并使用公钥验证签名> 在服务器上。

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.

清眉祭 2024-11-11 06:06:19

不确定我完全理解你的问题,但建议你看看 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

叹沉浮 2024-11-11 06:06:19

一个简单的方法是添加自定义 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文