我正在尝试使用 feedback.php 文件从我的数据库中删除非活动设备。我有现在工作的脚本代码:
<?php
# -*- coding: utf-8 -*-
##
## Copyright (c) 2010 Benjamin Ortuzar Seconde <bortuzar@gmail.com>
##
## This file is part of APNS.
##
## APNS is free software: you can redistribute it and/or modify
## it under the terms of the GNU Lesser General Public License as
## published by the Free Software Foundation, either version 3 of
## the License, or (at your option) any later version.
##
## APNS is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with APNS. If not, see <http://www.gnu.org/licenses/>.
##
##
## $Id: processFeedback.php 168 2010-08-28 01:24:04Z Benjamin Ortuzar Seconde $
##
require_once('config.php');
require_once('classes/DataService.php');
require_once('classes/Apns.php');
echo "<br/>Started processing Feedback";
error_reporting(E_ALL);
ini_set( 'display_errors','1');
//get the certificates
$certificates = DataService::singleton()->getCertificates();
foreach ($certificates as $certificate) {
//only process apps that have a certificate associated to it.
if($certificate->KeyCertFile == ''){
echo "<br/>Certfile not set for App: [{$certificate->CertificateName}]";
continue;
}
//var_dump($certificate);
//connect to feedback server
$certificatePath = $certificateFolder . '/' . $certificate->KeyCertFile;
$server = DataService::singleton()->getCertificateServer($certificate->CertificateId, 3);
$apns = new apns('feedback.sandbox.push.apple.com:2196', $certificatePath, $certificate->Passphrase);
//get tokens
$feedbackTokens = $apns->getFeedbackTokens();
//close connection
unset($apns);
//print the number of tokens to check for
$countTotal = count($feedbackTokens);
echo "<br/>There are [{$countTotal}] tokens notified by feedback";
//loop trough the tokens
foreach ($feedbackTokens as $feedbackToken) {
//only DeActivate devices that where updated before they where removed. Otherwise the user could of installed the app again.
DataService::singleton()->setDeviceInactive($feedbackToken['devtoken'], $app->AppId, $feedbackToken['timestamp']);
}
}
echo "<br/>Completed processing Feedback";
?>
(完整来源:https ://github.com/bortuzar/PHP-Mysql---Apple-Push-Notification-Server/blob/master )
但是我在连接服务器时遇到问题。提供推送通知工作正常,但此反馈脚本不起作用。它没有使用我输入的证书,这就是发生的事情:
<br/>Started processing Feedback<br/>Opening connection to: feedback.sandbox.push.apple.com:2196<br/>Clossing connection to: feedback.sandbox.push.apple.com:2196<br/>There are [0] tokens notified by feedback<br/>Opening connection to: feedback.sandbox.push.apple.com:2196<br/>Clossing connection to: feedback.sandbox.push.apple.com:2196<br/>There are [0] tokens notified by feedback<br/>Completed processing Feedback
但是,它回复了 0 个令牌。当我只是连接到一个随机主机时,它显示相同:
<br/>Started processing Feedback<br/>Opening connection to: localhost:80<br/>Clossing connection to: localhost:80<br/>There are [0] tokens notified by feedback<br/>Opening connection to: localhost:80<br/>Clossing connection to: localhost:80<br/>There are [0] tokens notified by feedback<br/>Completed processing Feedback
得到答复需要一段时间。如果我没记错的话,我想这与证书有关,或者我错过了某种 PHP 包括?