-1

我正在尝试使用 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 包括?

4

1 回答 1

0

如果我从您之前的问题中没记错的话,您的 $server 变量是 NULL。这对我来说意味着真正的问题在于

$server = DataService::singleton()->getCertificateServer($certificate->CertificateId, 3);

如果您的证书一切正常,则应该返回有效的服务器。但它没有 - 您暂时通过硬编码$server下一行中的变量来解决这个问题:

$apns = new apns('feedback.sandbox.push.apple.com:2196', $certificatePath, $certificate->Passphrase);

换句话说 - 你怀疑你的证书有问题是正确的。

您可能会发现此较早答案中提供的信息对解决该问题很有用。

于 2013-01-30T20:31:45.667 回答