iOS, APNS, Push Notification, DeviceToken,iPhone [closed] - ios

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
We are registerting our iOS application for APNS. After that APNS provide a deviceToken. Is there any process to get the iOS device registration URL on APNS.

I think No. You need your own server where you will put notification logic.

Related

Can I catch Windows notifications? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 months ago.
Improve this question
Can I somehow catch Windows notifications in RAD Studio? Such as browser notifications, or notifications from other application. Can I get the notification content?
UPDATE:
My program runs in the background, and when I receive a notification, for example a new email, my program brint to front and the notification body visible in the Memo.
If you are referring to Windows Notifications usually shown in the Action Center sidebar, then Delphi provides a TNotificationCenter component which supports it. For a how-to see the documentation: Using Notifications

Expiry Notification of from ios [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
If I turn off auto renew before expiry of a in-app subscription, ios says it will send me DID_CHANGE_RENEWAL_STATUS, so after that when the actual expire time comes will ios again notify me?
As I am unable to turnoff auto renew on sandbox I am not sure what will actually happen
Short answer - no. Apple will not notify you when actual expires date comes. However, you can extract expires_date from other notifications and from receipt itself and remember it.

How can i set my recorded voice as notification sound in ios app? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I want to record my voice and set it as a sound in local notification payload. Please let me know if there is anyone facing the same issue?
To play a recorded voice as notification sound you have to store the recorded voice data in Library/Sound/Filename
Please check attached screenshot of apple documments.

How to get pending local notifications [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How does an application get information about local ios notifications. Specifically, how can I cancel all pending local notifications belonging to a particular app like Facebook, etc.
To get remaining all local notification
NSLog(#"%#",[[UIApplication sharedApplication]scheduledLocalNotifications]);
and to cancel all local notification
[[UIApplication sharedApplication]cancelAllLocalNotifications];
Maybe it will help you.

Is is possible to make a specific http call using cellular while you are connected to wifi on iOS [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am developing an application for an operator. They want to get the msisdn of the user by making an http call using cellular connection. Can this also be done while you are connected to wifi. Thanks.
No, as an developer you can not choose the connection used to make HTTP calls.
I've been developers an App for an operator for 3 years now and would also like this option, but Apple has not released any API for this.

Resources