devicetoken Questions

2

I was trying to get APNS push token. func configPushNotifications(_ application: UIApplication) { application.registerForRemoteNotifications() } But I didn't received any Token from AppDelegat...
Karalynn asked 17/10, 2019 at 6:15

2

Is there any possibilities for a device token to change after the app is installed and registered for the notification in any kind of scenarios. Scenarios like: App update iOS update or in any o...
Elea asked 21/10, 2016 at 6:0

9

Solved

I am using this code to get the Notification Center Device token. It was working in Swift 3 but not working in Swift 4. What changed? if #available(iOS 10.0, *) { let center = UNUserNotification...
Soriano asked 20/11, 2017 at 6:31

0

I came across Firebase Messaging, and after reading through the guide, they have posted here: https://firebase.google.com/docs/cloud-messaging/flutter/client, I was able to get a user's device toke...

3

Solved

Apples docs are a bit vague on when a device's deviceToken can change. It pays to code defensively, and to test that code. I've written my app so that at startup it registers for push notification...
Volta asked 16/11, 2015 at 15:4

1

I stopped receiving the push notifications after the certificate got expired and new certificate has been created. I've updated the p12 certificate on the server. I'm using Pusher application to d...
Pica asked 15/6, 2017 at 17:32

7

I am developing an iPhone app that needs push notification. I followed the instructions for creating the certifications and modifying the app ID. I am not totally sure I did this correctly, but I d...
Capacious asked 11/7, 2010 at 20:58

6

I have two apps on the iTunes store - both implement push notifications. While I was testing sending notifications to these production apps, I noticed that a push intended for app A was titled and ...
Grubstake asked 25/2, 2010 at 22:51

4

Solved

Is there a way to determine if a device token is sandbox or distribution? We are testing and the application is sometimes signed with a development certificate and others are signed with an ad hoc ...
Heteroousian asked 4/5, 2011 at 7:4

2

Solved

I am asking about two situations: 1) After we do a regular update from the App Store 2) After we simulate an update, by downloading a current version from a Store and installing & running a n...
Nonlinearity asked 25/1, 2017 at 15:33

2

Solved

I had an app working on Parse, with the notifications working fine. I changed app packaging and I create a new app on Parse. With the new app, deviceToken and pushType columns remain always empty ...

10

Solved

This is the situation in my Installation page on Parse Console: As you see some devices have the "deviceToken" and some do not have the "deviceToken". This is not good because every device shoul...

3

Solved

I have two applications in one device. For iOS 7 both applications are sending different device tokens but for iOS 6 both apps are sending same device token. As per my understanding device token h...
Shirting asked 22/10, 2013 at 17:52

1

Solved

I had an issue where a user started receiving double notifications after uninstalling and reinstalling my app, as the device sent to my server 2 different APNS tokens - one from the first installat...
Mathers asked 15/12, 2015 at 3:15

7

Solved

Every one I am using the parse service for push notification in my app. but it register all time when i re-install the app in one device.Then problem is that,one device receive multiple notificatio...

4

Solved

I need to send the APNS device token of my iOS app to my provider by calling a service that expects JSON data in my request. I'm reading Apple's Local and Push Notification Programming Guide and it...

2

Solved

If we reset an iPhone, the device ID remains the same. Is it the same for the device token?
Haematoma asked 3/8, 2011 at 13:14

2

Solved

I am working on an iPhone app with Apple Push Notification integration. I have some doubts on this. If the user clicked "Dont Allow" button in the APNS registration alert, will our code still re...
Haihaida asked 15/6, 2012 at 6:4

2

Solved

I have read a lot of tutorials for this and i just wanted ti know if this is right way to do this - (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(...
Manifestation asked 20/9, 2011 at 8:54

5

I store Android and iOS device tokens in DB. Following are few examples of device tokens getting saved in the DB. 359092050465370 654C4DB3-3F68-4969-8ED2-80EA16B46EB0 294913EC-6100-42E8-8C2D-E9F6...
Gawen asked 26/11, 2013 at 9:23

7

Solved

I have used the following code to register my app to receive push notification, and I got the alert that asks me to register for push notification and I accidentally press cancel. Now I want to hav...

3

Solved

In my iPhone app I am getting the device token from Apple which I am assigning a public property inside the Delegate file as shown below: - (void)application:(UIApplication*)application didRegist...
Ferminafermion asked 29/9, 2011 at 17:22

1

Solved

I need to get the device token because I will use it for autologin. However, if the user did not allow Push Notifications from my App in his/her device, I will not be able to get the device token. ...
Amphimacer asked 28/8, 2013 at 2:9

1

Solved

Okay so im coding this app in iOS. Got the Push Notifications down pretty good. I just have one question. Would it be wise of me to store a users device token when they login and delete it when the...
Dynast asked 31/5, 2013 at 18:4

1

Possible Duplicate: pack() in php. Illegal hex digit warning I am utilizing apple's push notification service and in order to send the notification, you have to build the message in binary...
Ambiguity asked 16/12, 2012 at 22:14

© 2022 - 2024 — McMap. All rights reserved.