Certificate AAACertificateServices problem with adding.

how to add AAACertificateServices 5/12/2020 certificate in my IOS app?
Are you asking because of this Apple Push Notification service server certificate update news article? If so, this isn’t a change you need to make in your app but rather something you need to check on your push provider server.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"
Thank you for your answer. How can I check it?

How can I check it?

Are you running your push provider on macOS? If so, I can help you with that. If you’re running it on some other platform, you’ll have to consult the support resources for that platform.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"
Yes, I am running on macOS. Please help .
You’re running a push provider server on the Mac? Well, that’s unusual.

Anyway, there’s two possibilities here:
  • Your push provider server code is using macOS’s TLS infrastructure. If that’s the case you can check for the presence of the AAA Certificate Services root certificate in the system trust store. There’s instructions for that below.

  • Your push provider server code is using its own TLS infrastructure (a common choice here is OpenSSL). If so, you’ll need to consult with the support resources for that TLS code to find out how to check whether it trusts a specific root.



To test whether the AAA Certificate Services root certificate is trusted on your Mac:
  1. Run Keychain Access.

  2. Select System Roots on the left.

  3. Find AAA Certificate Services in the list.

  4. Double click it.

  5. Disclose the Trust section.

  6. Make sure all the popups are set to their default value (the “When using this certificate” popup should be set to Use System Defaults and the other should all be set to “no value specified”).

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"
Thank you a lot. That was really helpful.
Certificate AAACertificateServices problem with adding.
 
 
Q