Questions tagged [devicetoken]

A 32-byte binary identifier (often represented as a 64 character HEX String) used to identify an iOS device for the purpose of sending it Apple Push Notifications.

A 32-byte binary identifier (often represented as a 64 character HEX String) used to identify an iOS device for the purpose of sending it Apple Push Notifications.

In pre-iOS7 devices, all the applications on a single device would get the same device token when registering to Apple Push Notifications. Starting in iOS7, each application installed on the same device gets a unique device token.

212 questions
0
votes
1 answer

APN Device Token for Multiple Users

I have read apple's push notification guideline and a few stack overflow questions such as these: APNs duplicate tokens Are push notification tokens unique across all apps for a single device? What Happen If a APNS Device Token Expired? Does the…
Olla Ashour
  • 301
  • 1
  • 11
0
votes
0 answers

APN Working with One Device but Not with Multiple Devices

I am trying to send push notification to a bunch of iPads and tested it first with the device I have. It worked just fine. Then I tried to expand it to include multiple devices, including my own, and it doesn't seem to work (checked with other…
Ynhockey
  • 3,845
  • 5
  • 33
  • 51
0
votes
1 answer

Do Android GCM registration ids always start with "APA"?

In my app I have different devices registered and for the Android ones I am storing the GCM Registration Id and for the iOS I am storing the device token (push notifications). I want to distinguish when a device is iOS or Android. What is the…
user411103
0
votes
1 answer

-ios i want to register iphone's device_token in DB. But sometimes that happens fail

I made my app to register iPhone's device_token when app launch for the first time after installed. But sometimes that happens fail. but app needs device_token for operating ordinarily. - (void) application:(UIApplication *)application…
석진영
  • 243
  • 4
  • 13
0
votes
1 answer

Can one use the deviceToken in the callback didRegisterForRemoteNotificationsWithDeviceToken to uniquely identify a device

When device is registered for remote push notification the following method is called back. (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken My question is Can one use…
zeal
  • 465
  • 2
  • 11
  • 22
0
votes
0 answers

IOS DeviceToken from NSData to NSString to NSDictionary

I am trying to pass along the deviceToken I receive for IOS under didRegisterForRemoteNotificationsWithDeviceToken to another method which accepts NSDictionary which will further be sent to my backend Server as a POST request (JSON format). I am…
Curious101
  • 1,538
  • 2
  • 18
  • 36
0
votes
1 answer

Ionic framework don't save token

I have a problem with Ionic framework. I follow the guide to receive and send push notification, but something doesn't work. When I launch the app, I press button Identify, and show my an alert that say the user ID. After, I press on register…
Michael
  • 324
  • 2
  • 20
0
votes
0 answers

2 App connecting to same Parse account

I have single code base for 2 different apps and we change the applicationID in gradle to build as two different apps. These both connect to same parse account. When I check _Installation class deviceToken & PushType is not updating. Let me know if…
Prasad
  • 240
  • 3
  • 7
0
votes
1 answer

What are the combination in device token iPhone?

I want to know that device token is make with which type of combinations? What are structure of device token inside 64 hexa string.
Vivek Yadav
  • 1,117
  • 10
  • 14
0
votes
1 answer

iOS Parse deviceToken issues

I am trying to retrieve the deviceToken using the next code: func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) { let installation =…
jovannypcg
  • 205
  • 3
  • 11
0
votes
0 answers

Device token is not received from iphone

PFInstallation *currentInstallation = [PFInstallation currentInstallation]; [currentInstallation setDeviceTokenFromData:newDeviceToken]; [currentInstallation saveInBackground]; I successfully installed my app in iPhone, then manually turned off…
Monika Patel
  • 2,287
  • 3
  • 20
  • 45
0
votes
0 answers

Parse Installation Table not registering deviceToken

I have followed the standard procedure for registering a deviceToken on a user installation: - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { PFInstallation…
Smikey
  • 8,106
  • 3
  • 46
  • 74
0
votes
2 answers

Is device token is same for all app in Android?

In case of Apple, device token is same for all apps in device. It just differentiate it with certificate. But what in case of android? Is device token for all apps is same or different?
nilesh
  • 1,483
  • 2
  • 19
  • 37
0
votes
2 answers

Identifying iPhone OS's on a Network and Sending Push Notifications

Can you identify devices on your network as an iPhone OS device easily? Can you send push notifications to devices identified as using the iPhone OS on your network without a a target app? Is is possible to identify which devices on a network are…
0
votes
1 answer

Apple push notification with Apple entreprise app don't get the device token

I set up everything (creates certificates) and figured out to get the device token in development environment. When I call: [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings…