如何运行php脚本发送推送通知

时间:2015-11-26 15:36:52

标签: php ios swift push-notification

我需要帮助在swift中实现推送通知。我遵循了ray wenderlich教程http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1,但没有提到你如何在Xcode中实际调用或运行php推送通知脚本。这就是我现在尝试调用脚本的方式:

    let request = NSMutableURLRequest(URL: NSURL(string: "http://website.com/pushNotification")!)
    request.HTTPMethod = "POST"

    let dataDictionary:[String:String] = ["NotificationData":"\(deviceTokenString)<*&*>password<*&*>my first push notification"]

    let data:NSData = try! NSJSONSerialization.dataWithJSONObject(dataDictionary, options: [])
    request.HTTPBody = data

    request.addValue("application/json", forHTTPHeaderField: "Content-Type")

    // Create a NSURLSession task with completion handler
    let task:NSURLSessionDataTask = NSURLSession.sharedSession().dataTaskWithRequest(request, completionHandler: { (data:NSData?, response:NSURLResponse?, error:NSError?) -> Void in

        // Convert the data into a dictionary
        let response:[String:String] = (try! NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.MutableContainers)) as! [String:String]


        // Check if there was an error
        if let result = response["result"] {
            if result == "success"{

                NSLog("Message deleviered successfully")


            }
            else if result == "error"{
                NSLog("Message could not be deleviered")
            }

        }

    })

    // Run the task
    task.resume()

继承了它命中的php脚本:

<?php


// Get the data from the request
$json = file_get_contents('php://input');
$data = json_decode($json, true);
$pushData = $data['NotificationData'];

// Format data
$keywords = explode("<*&*>", $pushData);

// Assign data into variables
$deviceToken = $keywords[0];
$passphrase = $keywords[1];
$message = $keywords[2];

////////////////////////////////////////////////////////////////////////////////

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'signingcertificate.p12');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);

// Open a connection to the APNS server
$fp = stream_socket_client(
    'ssl://gateway.sandbox.push.apple.com:2195', $err,
    $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);

if (!$fp) {
    //exit("Failed to connect: $err $errstr" . PHP_EOL);
}


// Create the payload body
$body['aps'] = array(
    'alert' => $message,
    'sound' => 'default'
    );

// Encode the payload as JSON
$payload = json_encode($body);

// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;

// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));

if (!$result) {
    echo '{"result" : "error"}';
}
else {
    echo '{"result" : "success"}';
}
// Close the connection to the server
fclose($fp);

?>

但是Xcode给了我这个错误:

致命错误:'试试!'表达式意外地引发了一个错误:错误Domain = NSCocoaErrorDomain Code = 3840“JSON文本没有以数组或对象开头,并且选项允许未设置片段。” UserInfo = {NSDebugDescription = JSON文本不以数组或对象开头,并且选项允许未设置片段。}:file /Library/Caches/com.apple.xbs/Sources/swiftlang_PONDEROSA/swiftlang_PONDEROSA-700.1.101.6/src/swift/ stdlib / public / core / ErrorType.swift,第50行

我几乎肯定这个错误与我调用php脚本的方式有关但我不知道应该如何调用这种类型的php脚本。请帮忙!任何建议或见解将不胜感激!

1 个答案:

答案 0 :(得分:1)

该链接确实告诉您如何处理PHP脚本。你不能通过Xcode调用它。

正如教程所述:

  

正如我之前提到的那样,您需要设置一个服务器,将推送通知发送到您的应用。对于第一次测试,您还不打算设置服务器。相反,我将为您提供一个非常简单的PHP脚本,用于建立与APNS的连接,并向您指定的设备令牌发送推送通知。您可以直接在Mac上运行。

     

...

     

您应该将设备令牌从应用程序复制到$ deviceToken变量中。一定要省略空格和括号;它应该只是64个十六进制字符。将您的私钥的密码短语放入$ passphrase,以及您希望在$ message中发送的文本。   将ck.pem文件复制到SimplePush文件夹中。请记住,ck.pem文件包含您的证书和私钥。

     

然后打开终端并键入:.....

PHP是服务器将执行的操作的简单示例。您还需要构建服务器,以便在发生特定事件时调用Apple的APNS。移动应用程序本身不会调用推送通知。