Firebase p8: certificado APN inválido. Verifique o certificado em Configurações

Registrei-me com sucesso no APN e recebi o ID do token. O problema é que, quando envio uma notificação do console do Firebase, recebo um erro

Certificado APN inválido. Verifique o certificado em Configurações

Estas são as etapas que segui para atribuir o certificado .p8 APN ao Firebase. Estou testando o aplicativo em um dispositivo Iphone. O que estou fazendo errado?

criou nova chave emhttps://developer.apple.com/account/ios/authkey/baixou o arquivo p8obteve o ID da equipehttps://developer.apple.com/account/#/membership/carregou o arquivo .p8 no console do firebase em Configurações / sistema de mensagens na nuvemno meu .xcworspace em Destinos / Recursos / Notificações por push: LIGADOO arquivo myproject.entitlements contém o desenvolvimento de APS Environment String.NOTA: No developer.apple.com, em APP IDs, se eu clicar no ID do myApp e rolar para baixo, o Push Notifications Configurable & Development é exibido em amarelo e não em verde.

Algumas pessoas no SO sugeriram que eu deveria criar uma nova chave no developer.apple.com. Fiz isso, segui o mesmo processo acima e o mesmo erro.

EDITAR

O token gerado pelos APNs no lado do cliente é semelhante a:cUEPUvXjRnI:APA91bGrXvRpjXiIj0jtZkefH-wZzdFzkxauwt4Z2WbZWBSOIj-Kf3a4XqTxjTSkRfaTWLQX-Apo7LAe0SPc2spXRlM8TwhI3VsHfSOHGzF_PfMb89qzLBooEJyObGFMtiNdX-6Vv8L7

import UIKit
import Firebase
import FirebaseCore
import FirebaseMessaging
import FirebaseInstanceID
import UserNotifications

 @UIApplicationMain
 class AppDelegate: UIResponder, UIApplicationDelegate {

  var window: UIWindow?


   func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

     FIRApp.configure()

     //firInstanceIDTokenRefresh - > called when system determines that tokens need to be refreshed
     //when firInstanceIDTokenRefresh is called, our method is called too self.tokenRefreshNotification:
     NotificationCenter.default.addObserver(self, selector: #selector(self.tokenRefreshNotification(notification:)), name: NSNotification.Name.firInstanceIDTokenRefresh, object: nil)

     //obtain the user’s permission to show any kind of notification
     registerForPushNotifications()
   return true

 }//end of didFinishLaunchingWithOptions


 //obtain the user’s permission to show any kind of notification
 func registerForPushNotifications() {

     // iOS 10 support
     if #available(iOS 10, *) {
        UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .alert, .sound]){ (granted, error) in
            print("Permission granted: \(granted)")

            guard granted else {return}
            self.getNotificationSettings()
        }

    }
        // iOS 9 support
    else if #available(iOS 9, *) {
        UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil))
        self.getNotificationSettings()
    }
        // iOS 8 support
    else if #available(iOS 8, *) {
        UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil))
        self.getNotificationSettings()
    }
        // iOS 7 support
    else {
        UIApplication.shared.registerForRemoteNotifications(matching: [.badge, .sound, .alert])
    }
}//end of registerForPushNotifications()



   //if user decliens permission when we request authorization to show notification
  func getNotificationSettings() {
    UNUserNotificationCenter.current().getNotificationSettings { (settings) in
        print("Notification settings: \(settings)")
         print("settings.authorizationStatus is \(settings.authorizationStatus)")
        guard settings.authorizationStatus == .authorized else {return}
        UIApplication.shared.registerForRemoteNotifications()
    }
 }



   func application(_ application: UIApplication,didFailToRegisterForRemoteNotificationsWithError error: Error) {
    print("Failed to register: \(error)")
  }


 func tokenRefreshNotification(notification: NSNotification) {
    let refereshToken = FIRInstanceID.instanceID().token()
    print("instance ID token is \(refereshToken)")

    connectToFcm()
 }


  func connectToFcm() {
    FIRMessaging.messaging().connect { (error) in
        if error != nil  {
            print("unable to connect to FCM")
        }else {
            print("connected to FCM")
        }
     }
   }

 }//end of AppDelegate    

questionAnswers(1)

yourAnswerToTheQuestion