通过PHP & 数据库连接iPhone 的 HTTPS
通过 HTTPS 连接通过 PHP 将数据获取到 iPhone 应用程序(PHP 文件与 MySQL 数据库位于同一 Web 服务器上)是否足够?
我说的是安全方面。
另外,这会是一个繁琐的过程(有太多的开销)还是可以在性能方面发挥作用?
提前致谢。
Would it be sufficient to get data through a HTTPS connection into an iPhone app via PHP (the PHP files are located on the same web server as a MySQL database)?
I'm speaking in terms of security.
Also, would this be a tideous process (with too many overheads) or can it work in terms of performance?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已将 HTTP 身份验证添加到您描述的安全方案中,因此我的目录包含 PHP 脚本,这些脚本从我的 iPhone 应用程序接收 Web 请求并发出 JSON 作为返回,这是基本 Web 服务器级身份验证的背后。虽然不是更强,但它至少可以防止爱管闲事的 URL 操纵者找到进入那里的方法。
为此,我推荐以下第三方库:
ASIHTTPRequest
JSON 框架
使用这两个东西,
-viewDidLoad
方法可能包含这:就这么简单。
I have added HTTP authentication to the security scheme you describe--so my directory containing the PHP scripts that receive web requests from my iPhone app and emit JSON in return is behind basic web-server-level authentication. Not a LOT stronger, but it at least prevents nosy URL-twiddlers from finding their way in there.
I recommend the following third-party libraries for this:
ASIHTTPRequest
JSON Framework
Using those two things, a
-viewDidLoad
method might contain this:Just that simple.
这是我用来从 iPhone 应用程序访问 mysql 的最佳解决方案之一(间接通过 PHP) http://tempered.mobi /
抱歉,由于某种原因,我无法直接超链接到该文章。但是如果你按 Articles 然后按 mysql json PHP,你会看到相关的教程
this is one of the best solutions i've used for accessing mysql from an iphone app (indirectly through PHP) http://tempered.mobi/
Sorry for some reason, i cant hyperlink straight to the article. But if you press Articles and then mysql json PHP, you'll see the relevant tutorial