Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Q1:如果我使用或分别从我的应用程序中填充一个NSData或NSString对象的内容,后续请求是否会在同一会话中注册到 Web 服务器上(在我的情况下为 PHP)?还是他们都会来创建新的会话?dataWithContentsOfURLstringWithContentsOfURL
NSData
NSString
dataWithContentsOfURL
stringWithContentsOfURL
Q2:如果有的话,使用基于 HTTP 的身份验证(如在 RESTful 服务中)与通过 https 提交 u/p 对有什么优势?
Q1:不,他们不保持会话,您至少需要使用NSURLConnection Q2:不同之处在于 HTTPS 连接是加密的,很难被嗅探或劫持,并且在基于 HTTP 的身份验证中,凭据实际上是以纯文本形式发送,因此如果有人在嗅探网络,则可以轻松找到它们...
NSURLConnection