没有获得生产证书的推送通知

时间:2014-05-05 11:35:42

标签: php ios objective-c apple-push-notifications

我已经阅读了很多关于此主题的答案,但问题没有通过建议的解决方案解决。我的问题是我没有获得生产证书的推送通知。相同的推送通知已成功获得开发证书。我特别想说我的设备令牌对于生产和开发环境是完全不同的。因此,同一设备令牌没有问题。此外,我正在为两者使用不同的配置文件。意思是说,应用级别没有配置问题。

我们正在使用PHP作为发送推送通知的服务器。

以下是我的两个问题:

  1. 服务器端是否有任何遗漏?对于哪个PHP服务器成功发送推送通知以及生产环境,它的生成问题是什么?
  2. 我错过了应用中的任何内容吗?
  3. 我将非常感谢你们所有人。我坚持这个问题。非常感谢提前

2 个答案:

答案 0 :(得分:0)

检查iphone推送通知的php功能......

function iphone_notification($deviceToken,$message,$not_type,$sound,$vibration_type){
            $passphrase = '******';
            $ctx = stream_context_create();
            stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
            stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
            $fp = stream_socket_client('ssl://gateway.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
            $body['aps'] = array('alert' => $message, 'sound' => $sound);
            $body['notification_type'] = $not_type;
            $body['vibration_type'] = $vibration_type;
            //1 = news;
            //99 = other;
            //echo $err."<br>".$errstr;
            $payload = json_encode($body);
            $msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
            $result = fwrite($fp, $msg, strlen($msg));
            fclose($fp);
    }

答案 1 :(得分:0)

我遇到了同样的问题。如果您的.pem文件正确,那么使用以下设置您将获得推送通知。 (check terminal commands to make .pem

//for development profile
$apns_url = 'gateway.sandbox.push.apple.com';

//for production you should use this
$apns_url = 'gateway.push.apple.com';s. 

有关详细信息,请查看此link1 >> link2 >>