如何使用 Objective C 将推送通知的设备令牌和其他用户设置发送到服务器上的 SQL 表
理想情况下,我想使用 POST 向推送通知服务器发送 HTTP 请求,其中包含设备令牌以及一些用户定义的设置。从那里我可以在服务器上设置一个 php 脚本来处理传入的数据并将其输入到 SQL 表中。如果这是唯一的方法,我将如何从 Objective C 发起 HTTP 请求?
Ideally, I would like to send an HTTP Request using POST to the Push Notification Server that contains the device token as well as some user-defined settings. From there I can set up a php script on the server to deal with the incoming data and input it into an sql table. If this is the only way to do it, how would I go about initiating and HTTP Request from Objective C?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您首先需要使用如下函数将设备令牌转换为十六进制字符串:
然后您需要向服务器发出请求:
You'll first need to convert the device token to a hex string with a function like this:
Then you'll need to make a request to your server:
另一种方式:
another way: