6

Can I know if a user that have downloaded the app i have developed, deletes it? How to place a tag, or request that when the app gets deleted I get a call to my server?

thanks!

manuelBetancurt
  • 15,428
  • 33
  • 118
  • 216

2 Answers2

8

There is no defined notification when an application is deleted. If you must talk to a server, suspend inactive accounts after a predefined time limit.

CodaFi
  • 43,043
  • 8
  • 107
  • 153
5

If push is enabled for the app, Apple feedback service can be queried to fetch a list of devices from which the app was deleted.

SocialCircus
  • 2,110
  • 6
  • 24
  • 35
  • Check this, http://stackoverflow.com/questions/34630585/does-apns-feedback-service-no-longer-exist-as-per-new-apis The service seems to be deprecated. – SocialCircus Jul 25 '16 at 18:58