Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I send push notification to my device with php script from my server. The script code is

<?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);

In my AppDelegate.m there is such code

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

 }

The question is - why number in my badge is not updating when I receive more than one notification? Looks like its just replace

'badge' => +1,

each time. What am I doing wrong? Can you please help? Thank you

share|improve this question

2 Answers

You can not pass relative values for badge in the payload. +1 will simply become 1. If you want to increment or decrement you will need to keep track of the current badge number on your server, and pass the new absolute value in the payload.

share|improve this answer
So you mean I need to send to server my current badge number? – NewObjective Nov 1 '12 at 20:45
If you alter the badge number from within the application, yes. For example, when the user opens an unread message in your app, you need to update the badge number. Then tell the server the new badge number, or perhaps let it mark the message as read and let it figure out the correct badge number.The implementation of this depends on what kind of app it is and how your server API's are structured. – Rengers Nov 1 '12 at 23:33

First register for notification with the following method in the appDelegate.m

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

Check the reponse here

}
share|improve this answer
I have that method. I can receive notification, my problem is the number on badge dont increase when I send more than 1 notification – NewObjective Nov 1 '12 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.