如何在向服务器发送请求时添加设备信息?
我想在向服务器发送任何请求以从服务器获取数据时添加有关 iOS 和设备型号的信息。任何人都可以帮助我如何向服务器发送一些特定信息,以便服务器应该能够理解来自真实 iPhone/iPad 设备、模拟器的请求?
I want to add information about the iOS and device model while sending any request to server to fetch the data from server. Can any one help me how to send some specific information to server so that server should be able to understand the request came from real iPhone/iPad device , Simulator ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
UIDevice currentDevice
对象访问设备信息:型号:
版本:
使用
ASIHTTPRequest
POST将数据发送到服务器。Use
UIDevice currentDevice
object to access device info:Model:
Version:
Use
ASIHTTPRequest
POST to send data to server.如果您使用 ASIHTTPRequest 1.6.x 库与 iPhone 应用程序中的服务器连接,您可以在 ASIHTTPRequest.m 文件中获取此信息,如下所示
If you are using ASIHTTPRequest 1.6.x library for connectivity with server in iPhone application you can get this information in ASIHTTPRequest.m file as below