使用PHP向Urban airship发送消息

时间:2011-08-12 04:13:05

标签: php iphone ios

我是iphone开发人员,我正在开发应用程序,我需要向安装了我的应用程序的设备发送通知。我在Urban Airship的帮助下完成了这项工作,现在我的要求是从CMS(PHP代码)向城市飞艇(我的应用程序已注册)发送消息,该消息将自动发送到我的设备,作为早先从城市飞艇发送的通知。有人指导我如何实现这一目标,或以任何健康的方式告诉我实现这一目标

2 个答案:

答案 0 :(得分:4)

可以找到Urban Airship的API文档here。他们还an article描述了API的简单使用,以及开源PHP library

答案 1 :(得分:2)

<?php
 define('APPKEY','XXXXXXXXXXXXXXX'); // Your App Key
 define('PUSHSECRET', 'XXXXXXXXXXXXXXX'); // Your Master Secret
 define('PUSHURL', 'https://go.urbanairship.com/api/push/');

 $contents = array();
 $contents['badge'] = "+1";
 $contents['alert'] = "PHP script test";
 $contents['sound'] = "cat.caf";
 $notification = array();
 $notification['ios'] = $contents;
 $platform = array();
 array_push($platform, "ios");

 $push = array("audience"=>"all", "notification"=>$notification, "device_types"=>$platform);

 $json = json_encode($push);

 $session = curl_init(PUSHURL);
 curl_setopt($session, CURLOPT_USERPWD, APPKEY . ':' . PUSHSECRET);
 curl_setopt($session, CURLOPT_POST, True);
 curl_setopt($session, CURLOPT_POSTFIELDS, $json);
 curl_setopt($session, CURLOPT_HEADER, False);
 curl_setopt($session, CURLOPT_RETURNTRANSFER, True);
 curl_setopt($session, CURLOPT_HTTPHEADER, array('Content-Type:application/json', 'Accept: application/vnd.urbanairship+json; version=3;'));
 $content = curl_exec($session);
 echo $content; // just for testing what was sent

 // Check if any error occured
 $response = curl_getinfo($session);
 if($response['http_code'] != 202) {
     echo "Got negative response from server, http code: ".
     $response['http_code'] . "\n";
 } else {

     echo "Wow, it worked!\n";
 }

 curl_close($session);
?>