3

我使用服务器上的 php 脚本向我的设备发送推送通知。脚本代码是

<?php    
// Put your device token here (without spaces):
$deviceToken = 'a14b6212fa69a2b1c2dde4547a50c711fd40b9787cc029800584890d72a9f5db';

// Put your private key's passphrase here:
$passphrase = 'ujyfljnhjgby123';

// Put your alert message here:
$message = 'Delivery 33 message!';

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

$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
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);

echo 'Connected to APNS' . PHP_EOL;

// Create the payload body
$body['aps'] = array(
'badge' => +1,
'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 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;

// Close the connection to the server
fclose($fp);

在我的 AppDelegate.m 中有这样的代码

-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
{
[UIApplication sharedApplication].applicationIconBadgeNumber = [[[userInfo objectForKey:@"aps"] objectForKey: @"badgecount"] intValue];

 }

问题是 - 当我收到多个通知时,为什么我的徽章中的数字没有更新?看起来它只是替换

'badge' => +1,

每一次。我究竟做错了什么?你能帮忙吗?谢谢

4

4 回答 4

3

您必须从服务器端执行此操作。就我而言,我是通过 php 和 mysql 完成的。这是我的数据库 在此处输入图像描述

我添加了一个字段 badgecount,每次使用此代码将推送发送到设备时,我都会增加徽章计数

    $query = "SELECT badgecount FROM pushnotifications WHERE device_token = '{$device_token}'";
    $query = $this->db->query($query);
    $row = $query->row_array();
    $updatequery = "update pushnotifications set badgecount=badgecount+1 WHERE device_token ='{$device_token}'";
    $updatequery = $this->db->query($updatequery);
    $device = $device_token;
    $payload['aps'] = array('alert' => $pushmessage, 'badge' =>$row["badgecount"]+1, 'sound' => 'default');
    $payload = json_encode($payload); 

我还制作了另一个 api 来制作 badgcount 0 ,它在

- (void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo

因此,当看到通知时,它在服务器中再次为零。

于 2014-05-30T06:46:39.013 回答
1

您不能badge在有效负载中传递相对值。+1 将简单地变为 1。如果您想增加或减少,您需要跟踪服务器上的当前徽章编号,并在有效负载中传递新的绝对值。

于 2012-11-01T16:44:12.397 回答
0

我对此不是 100% 确定,但 +1 只会说 1,我认为你需要“+1”。

$body['aps'] = array(
'badge' => '+1',
'alert' => $message,
'sound' => 'default'
);

编辑:实际上,这可能只是针对 UrbanAirship 的,因为我考虑了一下……

于 2013-06-23T05:46:07.520 回答
-1

首先在 appDelegate.m 中使用以下方法注册通知

  - (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)devicetoken { 

Check the reponse here

}
于 2012-11-01T15:05:52.240 回答