apple-push-notifications

Renew Provisioning Profiles (Distribution) and keep current Appstore Apps working

℡╲_俬逩灬. 提交于 2019-12-02 03:03:11
I have an app on app store, which is using an iOS Provisioning Profile (Distribution) which is invalid. This Profile contains Push Certificate. so I want a regenerate Provisinig Profiles. Q. when I update Appstore app with renew Provising Profile, pushservice of current Appstore app version is working fine? (I just renew Provising Profile and same Certificate, same AppID) Thanks for your help on this :) As you mentioned in your question that Provisioning profile is Invalid. So i guess certificate is expired & you are going to renew it. If so than yes current app store version will work fine.

Push message doesn't send using with distributed certificate

六眼飞鱼酱① 提交于 2019-12-02 02:55:45
I can send push notification with developer p12 file using with sandbox, but my application on the appstore, I use distribution certificate f12 file using with gateway.push.apple.com messages cannot reach to devices. Push notification service activated on distirbuted certificate, I checked on developer.apple.com, I'm also trying new device id. (not developer device id) How can i solve my problem? Could you help me? where is my wrong? My C# code like below: int port = 2195; String hostname = "gateway.push.apple.com"; String certificatePath = HttpContext.Current.Server.MapPath("distribution.p12"

iPhone - App Uninstallation notification

僤鯓⒐⒋嵵緔 提交于 2019-12-02 02:32:32
How can I get a notification from App Store or APNs when my iOS App gets uninstalled? Also, if I send a push notification for the device where my App is uninstalled, what happens? Will Apple ban for such rogue Push notifications? There isn't a way that your app will know if it is uninstalled. Also I do not believe there is anyway Apple will tell you if your app is uninstalled. Apples Push Notification Service's FeedBack Service does provide a way to know if a device cannot receive a notification. However this does not guarantee that the device was uninstalled, only that it, for whatever reason

apns-collapse-id not merging multiple notifications iOS 10

别等时光非礼了梦想. 提交于 2019-12-02 02:11:01
问题 I am trying to collapse/merge multiple notifications belonging to same event in my app. iOS 10 introduced a key name apns-collapse-id in payload. Document says multiple remote notifications with same apns-collapse-id will merged and shown as single notification. So we have the payload with apns-collapse-id and thread-id in our notification payload. Unfortunately as there is no much content online explaining how these keys actually works, for safe play we have used the same unique value for

QuickBlox not sending APNS

蓝咒 提交于 2019-12-02 01:53:38
问题 Suddenly I'm getting an error when sending APNS through QuickBlox, and it's so weird cause it was working pretty well before. After user is logged i'm using TRegisterSubscriptionWithDelegate to register it for APNS, when sending APNS the error is No recipients. At least one user should be subscribed for APNS (Apple Push) (through SDK or REST API) Thought it could be something inside my app but when trying to send APNS in admin panel, got the same error: I've uploaded .p12 certificate and it's

any limitation push notification via APNS or C2DM?

别等时光非礼了梦想. 提交于 2019-12-02 01:17:56
问题 In enterprise, we will send push notification to 17,000 employee. They have smartphone(iOS, Android). We expect to send about 18 millions push notification per year. Is there any limitation push notification count via APNS or C2DM? I cannot found officer document in apple or google for the notification limitation. we must check this, before deploy our app. Please help me. 回答1: Not sure about C2DM, but APNS has no limit I've found yet. I send roughly 7 million push notifications a month

iOS Swift 3 Bundle Notification

孤街浪徒 提交于 2019-12-02 01:16:25
In My App I am using firebase push notification. Problem is when user connected to internet after long time they will receive lot of notifications as individual notification. Is it Possible to Receive Notification like whatsapp(You have 10 New Notification). If user receives more than 1 notification at a time means we need to make it as Group or Bundle notification. AL. In order to bundle notifications in iOS, you'll have to specify a thread-id : Provide this key with a string value that represents the app-specific identifier for grouping notifications. The system groups notifications with the

Running a background task in iOS at a specific time in the future

南笙酒味 提交于 2019-12-02 00:58:36
问题 Is there a way to wire a background task (such as toggling the use of location services) in iOS 7 to run at a specific point of time (e.g. tomorrow morning) without the user opening the app, or without having a constantly running background process? The only option that I am aware of is to have a push notification sent to the device at the desired time, but does anyone know of any purely on-device alternatives for this? 回答1: any purely on-device - unfortunately till now - 2014 there is no

apns-collapse-id not merging multiple notifications iOS 10

我是研究僧i 提交于 2019-12-02 00:55:40
I am trying to collapse/merge multiple notifications belonging to same event in my app. iOS 10 introduced a key name apns-collapse-id in payload. Document says multiple remote notifications with same apns-collapse-id will merged and shown as single notification. So we have the payload with apns-collapse-id and thread-id in our notification payload. Unfortunately as there is no much content online explaining how these keys actually works, for safe play we have used the same unique value for both apns-collapse-id and thread-id . We are expecting the multiple remote notifications with same apns

Handling Remote Notifications

余生颓废 提交于 2019-12-02 00:21:17
问题 I was reading how handling remote notification on developer apple guide. My questions are two: what is the interpretation of the phrase The notification is delivered when the application isn’t running in the foreground isn’t running in the foreground covers background and not running or in the background state just. Based on the interpretation, the following sentence: the application icon is tapped on a device running iOS, the application calls the same method, but furnishes no information