TouchJSON 与基本 HTTP 身份验证
我想知道是否有人将 TouchJSON 框架与基本的 apache HTTP 身份验证结合使用。本质上,我调用的 RESTful Web 服务的目录是通过基本的 http 身份验证来保护的。我的调用现在显然都返回 null。有人设法让这个工作吗?我可以在 URL 中嵌入用户名:密码,例如 https://username:[email protected]/webservices/ws.php 但出于明显的原因,这是不希望的。
任何帮助将不胜感激。
谢谢! 柯蒂斯
I was wondering if anyone has the TouchJSON framework working in conjunction with basic apache HTTP authentication. Essentially the directory of the RESTful webservice that I am calling is secured with basic http authentication. My calls are obviously all returning null now. Has anyone managed to get this working? I could embed the username:password in the URL like https://username:[email protected]/webservices/ws.php but for obvious reasons, that is not desired.
Any help would be appreciated.
Thanks!
Kurtis
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TouchJSON 不处理通过 http、https 或任何其他协议进行的任何数据传输。它只是一个用于在 JSON 和 NSDictionary 格式之间转换数据的解析器。因此,对于 TouchJSON 来说,数据如何交换并不重要。
相反,您需要在数据传输代码中处理授权。
TouchJSON does not handle any transfer of data via http, https or any other protocol. Itis merely a parser for converting data between JSON and NSDictionary formats. So it doesn't really matter to TouchJSON how the data exchanged.
Instead you will need to handle the authorization in your data transfer code.