热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

FCM+Swift3-Notificationsnotappearing

Iknowyouvestumbledacrossthisquestionbefore;severaltimesinfact.ButIhavefollowedEVERY

I know you've stumbled across this question before; several times in fact. But I have followed EVERY suggestion provided to me here, here, and even here.

我知道你之前偶然发现了这个问题;事实上好几次。但我已经按照我在这里提供给我的每一个建议,甚至在这里。

(Written in Swift 3, running on Xcode 8.1)

(用Swift 3编写,在Xcode 8.1上运行)

Yes, my PUSH NOTIFICATIONS in Capabilities are on. And even my Background Modes Remote Capabilities is on - I've tried toggling the FirebaseAppDelegateProxy On and Off, checked the certificates (why, yes, it is pointing to the correct App bundle), moved the

是的,我的功能通知已经开启。甚至我的后台模式远程功能开启 - 我尝试打开和关闭FirebaseAppDelegateProxy,检查证书(为什么,是的,它指向正确的应用程序包),移动了

application.registerForRemoteNotifications()

Cried, consumed copious amounts of sugar, prayed to God and then what ever other related deities I could think of, and still - naught.

哭了,消耗了大量的糖,向上帝祈祷,然后向我所能想到的其他相关神灵祈祷,但仍然 - 没有。

It could just be a screaming need for a second set of eyes, but any ideas?

它可能只是对第二组眼睛的尖叫需求,但任何想法?

import UIKit
import UserNotifications

import Firebase
import FirebaseMessaging


@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

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


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

        // Override point for customization after application launch.
        // [START register_for_notifications]
        if #available(iOS 10.0, *) {
            let authOptions : UNAuthorizatiOnOptions= [.alert, .badge, .sound]
            UNUserNotificationCenter.current().requestAuthorization(
                options: authOptions,
                completionHandler: {_,_ in })

            // For iOS 10 display notification (sent via APNS)
            UNUserNotificationCenter.current().delegate = self
            // For iOS 10 data message (sent via FCM)
            FIRMessaging.messaging().remoteMessageDelegate = self

        } else {
            let settings: UIUserNotificatiOnSettings=
                UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
            application.registerUserNotificationSettings(settings)
        }

        application.registerForRemoteNotifications()

        // Add observer for InstanceID token refresh callback.
        NotificationCenter.default.addObserver(self,
                                                         selector: #selector(self.tokenRefreshNotification),
                                                         name: NSNotification.Name.firInstanceIDTokenRefresh,
                                                         object: nil)

        return true
    }

    func tokenRefreshNotification(_ notification: Notification) {
        if let refreshedToken = FIRInstanceID.instanceID().token() {
            print("InstanceID token: \(refreshedToken)")
        }

        // Connect to FCM since connection may have failed when attempted before having a token.
        connectToFcm()
    }

    // [START connect_to_fcm]
    func connectToFcm() {
        FIRMessaging.messaging().connect { (error) in
            if error != nil {
                print("Unable to connect with FCM. \(error)")
            } else {
                print("Connected to FCM.")
            }
        }
    }
    // [END connect_to_fcm]

    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.
    }

    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, didReceiveRemoteNotification userInfo: [AnyHashable: Any]) {
        // If you are receiving a notification message while your app is in the background,
        // this callback will not be fired till the user taps on the notification launching the application.
        // TODO: Handle data of notification

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

        // Print full message.
        print(userInfo)
    }

    private func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
//        let tokenChars = deviceToken.bytes
        var tokenString = ""

        for i in 0..

And here are the extensions...

以下是扩展......

import Foundation
import UserNotifications
import FirebaseMessaging

@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
        // Print message ID.
        print("Message ID: \(userInfo["gcm.message_id"]!)")

        // Print full message.
        print("%@", userInfo)

    }

}

extension AppDelegate : FIRMessagingDelegate {
    // Receive data message on iOS 10 devices.
    func applicationReceivedRemoteMessage(_ remoteMessage: FIRMessagingRemoteMessage) {
        print("%@", remoteMessage.appData)
    }
}

Tokens are logging into the console, FCM is connected, Cloud Messaging is holding my certificates... the only possible hint I MAY have is that Firebase Console doesn't count the one device it is sending a message to as being 'Sent'.

令牌正在登录控制台,FCM已连接,云消息传递正在保存我的证书...我可能唯一可能的提示是Firebase控制台不会将发送消息的设备计为“已发送”。

enter image description here But the console looks fine.

但控制台看起来很好。

2016-12-15 00:07:05.344 voltuser[4199:2008900] WARNING: Firebase Analytics App Delegate Proxy is disabled. To log deep link campaigns manually, call the methods in FIRAnalytics+AppDelegate.h.
2016-12-15 00:07:05.349 voltuser[4199:2008900] Firebase automatic screen reporting is enabled. Call +[FIRAnalytics setScreenName:setScreenClass:] to set the screen name or override the default screen class name. To disable automatic screen reporting, set the flag FirebaseAutomaticScreenReportingEnabled to NO in the Info.plist
2016-12-15 00:07:05.447 voltuser[4199]  [Firebase/Core][I-COR000001] Configuring the default app.
2016-12-15 00:07:05.514:  Failed to fetch APNS token Error Domain=com.firebase.iid Code=1001 "(null)"
2016-12-15 00:07:05.520:  FIRMessaging library version 1.2.0
2016-12-15 00:07:05.549 voltuser[4199:]  Firebase Analytics v.3600000 started
2016-12-15 00:07:05.549 voltuser[4199:]  To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see this)
2016-12-15 00:07:05.605 voltuser[4199]  [Firebase/Core][I-COR000018] Already sending logs.
2016-12-15 00:07:05.679 voltuser[4199]  [Firebase/Core][I-COR000019] Clearcut post completed.
2016-12-15 00:07:05.782 voltuser[4199]  [Firebase/Core][I-COR000019] Clearcut post completed.
2016-12-15 00:07:05.824 voltuser[4199:]  The AdSupport Framework is not currently linked. Some features will not function properly. Learn more at here
2016-12-15 00:07:07.286 voltuser[4199:]  Firebase Analytics enabled
InstanceID token: c_4iSvTQcHw:APA91bGjKnPoH9LysKl9CQxCJRJsfqwXBSUFAmgRp-KEWKjWqe2j4nt6Y5gx8us41rB6eLnRCOwRntnbr_N1fh_swz8j-GvvChSsV3gvG8dufVFLpagdtOxrxPSgLubQrfw-JqkA-4wV
Connected to FCM.
And the snapshot says Snap (mx7zr3y6XpSGZ4uB4PhZ8QRHIvt2) 
[AnyHashable("notification"): {
    body = "THIS IS SO PAINFUL";
    e = 1;
    title = "WHY WONT YOU WORK";
}, AnyHashable("from"): 99570566728, AnyHashable("collapse_key"): com.mishastone.voltuser]

... but the message is logging just fine in my console. In fact, there are not outcrying errors at all!

...但是消息在我的控制台中正常记录。事实上,根本没有出现错误的错误!

sigh

My phone is not getting foreground, background or any sort of notification from the app - there's nothing. Zip. Zilch. Nada. Just the breaking sounds of my heart.

我的手机没有从应用程序获得前景,背景或任何类型的通知 - 没有任何东西。压缩。小人物。纳达。只是我心碎的声音。

My iPhone is currently on 9.3.5. If that helps any.

我的iPhone目前是9.3.5。如果这有帮助。

Any help would be greatly appreciated - or suggestions for alternative push notification systems...

任何帮助将不胜感激 - 或建议替代推送通知系统......

2 个解决方案

#1


10  

Figured it out. p.s. im using Swift 3 syntax, you are missing the completionhandler in your willPresent method

弄清楚了。附:我使用Swift 3语法,你缺少willPresent方法中的completionhandler

completionHandler The block to execute with the presentation option for the notification. Always execute this block at some point during your implementation of this method.

completionHandler使用通知的表示选项执行的块。始终在执行此方法期间的某个时刻执行此块。

https://developer.apple.com/reference/usernotifications/unusernotificationcenterdelegate/1649518-usernotificationcenter

https://developer.apple.com/reference/usernotifications/unusernotificationcenterdelegate/1649518-usernotificationcenter

func userNotificationCenter(_ center: UNUserNotificationCenter,
                            willPresent notification: UNNotification,
                            withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
    let userInfo = notification.request.content.userInfo as! [String: Any]



    completionHandler([.alert, .badge, .sound])

}

#2


0  

If you are sure about your code is perfect and still you are unable to receive FCM notifications then please update p12 certificate from Firebase console. You have to export only security key from Push certifcate and upload it . You will start receiving notifications.

如果您确定您的代码是完美的,但仍然无法接收FCM通知,请从Firebase控制台更新p12证书。您必须仅从Push certifcate导出安全密钥并上传它。您将开始接收通知。


推荐阅读
  • IhaveconfiguredanactionforaremotenotificationwhenitarrivestomyiOsapp.Iwanttwodiff ... [详细]
  • 篇首语:本文由编程笔记#小编为大家整理,主要介绍了SpringCloudRibbon部分源码相关的知识,希望对你有一定的参考价值。1:ribbon是提供通过servi ... [详细]
  • vue使用
    关键词: ... [详细]
  • 本文介绍了brain的意思、读音、翻译、用法、发音、词组、同反义词等内容,以及脑新东方在线英语词典的相关信息。还包括了brain的词汇搭配、形容词和名词的用法,以及与brain相关的短语和词组。此外,还介绍了与brain相关的医学术语和智囊团等相关内容。 ... [详细]
  • 本文讨论了使用差分约束系统求解House Man跳跃问题的思路与方法。给定一组不同高度,要求从最低点跳跃到最高点,每次跳跃的距离不超过D,并且不能改变给定的顺序。通过建立差分约束系统,将问题转化为图的建立和查询距离的问题。文章详细介绍了建立约束条件的方法,并使用SPFA算法判环并输出结果。同时还讨论了建边方向和跳跃顺序的关系。 ... [详细]
  • Android Studio Bumblebee | 2021.1.1(大黄蜂版本使用介绍)
    本文介绍了Android Studio Bumblebee | 2021.1.1(大黄蜂版本)的使用方法和相关知识,包括Gradle的介绍、设备管理器的配置、无线调试、新版本问题等内容。同时还提供了更新版本的下载地址和启动页面截图。 ... [详细]
  • CF:3D City Model(小思维)问题解析和代码实现
    本文通过解析CF:3D City Model问题,介绍了问题的背景和要求,并给出了相应的代码实现。该问题涉及到在一个矩形的网格上建造城市的情景,每个网格单元可以作为建筑的基础,建筑由多个立方体叠加而成。文章详细讲解了问题的解决思路,并给出了相应的代码实现供读者参考。 ... [详细]
  • 本文介绍了Codeforces Round #321 (Div. 2)比赛中的问题Kefa and Dishes,通过状压和spfa算法解决了这个问题。给定一个有向图,求在不超过m步的情况下,能获得的最大权值和。点不能重复走。文章详细介绍了问题的题意、解题思路和代码实现。 ... [详细]
  • 本文介绍了网页播放视频的三种实现方式,分别是使用html5的video标签、使用flash来播放以及使用object标签。其中,推荐使用html5的video标签来简单播放视频,但有些老的浏览器不支持html5。另外,还可以使用flash来播放视频,需要使用object标签。 ... [详细]
  • Summarize function is doing alignment without timezone ?
    Hi.Imtryingtogetsummarizefrom00:00otfirstdayofthismonthametric, ... [详细]
  • 本文由编程笔记#小编为大家整理,主要介绍了markdown[软件代理设置]相关的知识,希望对你有一定的参考价值。 ... [详细]
  • imnewtotheswiftandxcodeworld,soimhavingaproblemtryingtointegrateapackagetomypro ... [详细]
  • HDFS2.x新特性
    一、集群间数据拷贝scp实现两个远程主机之间的文件复制scp-rhello.txtroothadoop103:useratguiguhello.txt推pushscp-rr ... [详细]
  • Redis底层数据结构之压缩列表的介绍及实现原理
    本文介绍了Redis底层数据结构之压缩列表的概念、实现原理以及使用场景。压缩列表是Redis为了节约内存而开发的一种顺序数据结构,由特殊编码的连续内存块组成。文章详细解释了压缩列表的构成和各个属性的含义,以及如何通过指针来计算表尾节点的地址。压缩列表适用于列表键和哈希键中只包含少量小整数值和短字符串的情况。通过使用压缩列表,可以有效减少内存占用,提升Redis的性能。 ... [详细]
  • 本文介绍了Hive常用命令及其用途,包括列出数据表、显示表字段信息、进入数据库、执行select操作、导出数据到csv文件等。同时还涉及了在AndroidManifest.xml中获取meta-data的value值的方法。 ... [详细]
author-avatar
samiensfe_663
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有