Closed GoogleCodeExporter closed 8 years ago
sorry, log file was missing.
Here it is.
Original comment by peng...@gmail.com
on 3 Aug 2012 at 6:17
Attachments:
[deleted comment]
I resolved by the following:
<?php
$this->push->connect();
$this->push->add($data);
$this->push->send();
$errors = $this->push->getErrors(true);
foreach($errors as $error) {
foreach($error['ERRORS'] as $err) {
if($err['statusMessage'] == 'Invalid token') exit(); // since i use queue, just exit() and wait for another cosumer to comsume another. Or you may reconnect apns-php here
}
}
Original comment by peng...@gmail.com
on 26 Sep 2012 at 7:54
Dear,
The project source code has moved to github; if your issue is still valid,
please open it on github page https://github.com/duccio/ApnsPHP/issues
Thanks.
Original comment by aldo.arm...@gmail.com
on 26 Oct 2012 at 11:47
Original issue reported on code.google.com by
peng...@gmail.com
on 3 Aug 2012 at 6:12