i have a probleme with apns sharp i get the device token from my itunes for ( iphone ) and i put it int the programme

and i have a baddevicetokenexception : 40 , invalid ... he must have 64

i dont know how to get a devie token with 64 caracteres ?

thanks

link|improve this question
feedback

2 Answers

Your id is the unique identifier of the iPhone, but the devicetoken is the id to send to Apple for notifications.

To get the deviceToken :

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
link|improve this answer
feedback

Device token should be hex encoded to be used in .net libraries. and the correct length for that is 64 characters. Check https://github.com/arashnorouzi/Moon-APNS for a free open source push notification .net/C# library. every thing is done in 3 lines of code from generating payload to receiving rejected items from Apple servers. Also you can find full documentation about Apple Push Notifications here: http://arashnorouzi.wordpress.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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