Не могли бы вы проверить это один раз и ответить, если какое-либо решение / исправить меня? И, пожалуйста, дайте мне знать, если вам нужно больше деталей.

аюсь настроить push-уведомления с помощью Firebase на ios 11.4 с использованием Swift, и в настоящее время он не работает (т.е. даже не появляется сообщение о разрешении уведомлений). Связано ли это с тем, что я пишу код для ios 10 (это то, что они имеют на веб-сайте Firebase), или этот код должен работать для ios 10 и выше. Может кто-нибудь, пожалуйста, помогите мне с этим. Большое спасибо!

У меня есть следующееAppDelegate код:

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?
let gcmMessageIDKey = "gcm.message_id"


func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    // Override point for customization after application launch.
    FirebaseApp.configure()

    if #available(iOS 10.0, *) {
        // For iOS 10 display notification (sent via APNS)
        UNUserNotificationCenter.current().delegate = self

        let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound]
        UNUserNotificationCenter.current().requestAuthorization(
            options: authOptions,
            completionHandler: {_, _ in })
    } else {
        let settings: UIUserNotificationSettings =
            UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
        application.registerUserNotificationSettings(settings)
    }

    application.registerForRemoteNotifications()

    let token = Messaging.messaging().fcmToken
    print("***** MY FCM token: \(token ?? "")")

    return FBSDKApplicationDelegate.sharedInstance().application(application, didFinishLaunchingWithOptions: launchOptions)
}

func applicationWillResignActive(_ application: UIApplication) {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
    FBSDKAppEvents.activateApp()
}

func applicationDidEnterBackground(_ application: UIApplication) {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

func applicationWillEnterForeground(_ application: UIApplication) {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}

func applicationDidBecomeActive(_ application: UIApplication) {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

func applicationWillTerminate(_ application: UIApplication) {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool {
    return FBSDKApplicationDelegate.sharedInstance().application(application, open: url, sourceApplication: sourceApplication, annotation: annotation)
}


}

// [START ios_10_message_handling]
@available(iOS 10, *)
extension AppDelegate : UNUserNotificationCenterDelegate {

// Receive displayed notifications for iOS 10 devices.
func userNotificationCenter(_ center: UNUserNotificationCenter,
                            willPresent notification: UNNotification,
                            withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
    let userInfo = notification.request.content.userInfo

    // With swizzling disabled you must let Messaging know about the message, for Analytics
    // Messaging.messaging().appDidReceiveMessage(userInfo)

    // Print message ID.
    if let messageID = userInfo[gcmMessageIDKey] {
        print("Message ID: \(messageID)")
    }

    // Print full message.
    print(userInfo)

    // Change this to your preferred presentation option
    completionHandler([.alert, .badge, .sound])
}

func userNotificationCenter(_ center: UNUserNotificationCenter,
                            didReceive response: UNNotificationResponse,
                            withCompletionHandler completionHandler: @escaping () -> Void) {
    let userInfo = response.notification.request.content.userInfo
    // Print message ID.
    if let messageID = userInfo[gcmMessageIDKey] {
        print("Message ID: \(messageID)")
    }

    // Print full message.
    print(userInfo)

    completionHandler()
}
}

// [END ios_10_message_handling]

extension AppDelegate : MessagingDelegate {
// [START refresh_token]
func messaging(_ messaging: Messaging, didRefreshRegistrationToken fcmToken: String) {
    print("Firebase registration token: \(fcmToken)")
}
// [END refresh_token]

// [START ios_10_data_message]
// Receive data messages on iOS 10+ directly from FCM (bypassing APNs) when the app is in the foreground.
// To enable direct data messages, you can set Messaging.messaging().shouldEstablishDirectChannel to true.
func messaging(_ messaging: Messaging, didReceive remoteMessage: MessagingRemoteMessage) {
    print("Received data message: \(remoteMessage.appData)")
}
// [END ios_10_data_message]
}

И следующее по моемуViewController:

class ViewController: UIViewController, WKNavigationDelegate, WKScriptMessageHandler {

var webView: WKWebView!
let userContentController = WKUserContentController()

override func loadView() {
    super.loadView()

    let preferences = WKPreferences()
    preferences.javaScriptEnabled=true

    let configuration = WKWebViewConfiguration()
    configuration.preferences=preferences
    configuration.userContentController=userContentController

    webView = WKWebView(frame: self.view.frame, configuration: configuration)
    //webView = WKWebView(frame: self.view.frame)
    let token = Messaging.messaging().fcmToken

    let userScript = WKUserScript(
        source: "change_me(\"\(token ?? "")\")",
        injectionTime: WKUserScriptInjectionTime.atDocumentEnd,
        forMainFrameOnly: true
    )

    userContentController.addUserScript(userScript)
    webView?.configuration.userContentController.add(self, name: "scriptHandler")
    webView.navigationDelegate=self

    self.view.addSubview(webView!)
}

public func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage) {
    print("********Message received: \(message.name) with body: \(message.body)")

    let loginManager = LoginManager()
    loginManager.loginBehavior = LoginBehavior.native
    loginManager.logIn( readPermissions: [ReadPermission.publicProfile], viewController: self) { loginResult in
        switch loginResult {
        case .failed(let error):
            print(error)
        case .cancelled:
            print("User cancelled login.")
        case .success(let grantedPermissions, let declinedPermissions, let accessToken):
            print("Logged in!")
            print("\(accessToken)")
        }
    }


}

@IBAction func button(_ sender: UIButton) {

    print("Result: ")
}

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
    let taskershopURL = URL(string: "https://www.taskershop.ca")
    let taskershopURLRequest = URLRequest(url:taskershopURL!,cachePolicy: NSURLRequest.CachePolicy.reloadIgnoringLocalCacheData)
    webView?.load(taskershopURLRequest)


    let token = Messaging.messaging().fcmToken
    print("-------- FCM token: \(token ?? "")")

}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}


}

Ответы на вопрос(1)

Ваш ответ на вопрос