2016-12-15 12 views
8

दिखाई नहीं दे रही हैं, मुझे पता है कि आप इस प्रश्न से पहले ठोकर खा चुके हैं; वास्तव में कई बार। लेकिन मैंने मुझे here, here, और यहां तक ​​कि here प्रदान किए गए प्रत्येक सुझाव का पालन किया है।एफसीएम + स्विफ्ट 3 - अधिसूचनाएं

(स्विफ्ट 3 में लिखा, Xcode 8.1 पर चलने वाले)

हाँ, क्षमताओं में मेरी पुश नोटिफिकेशन चालू कर रहे हैं। , मैं FirebaseAppDelegateProxy ऑन और ऑफ़ टॉगल की कोशिश की है, प्रमाण पत्र की जाँच की (क्यों, हाँ, यह सही अनुप्रयोग बंडल की ओर इशारा करते है),

application.registerForRemoteNotifications() 

क्राइड चले गए - और यहां तक ​​कि मेरी पृष्ठभूमि मोड रिमोट क्षमताओं पर है चीनी की भारी मात्रा में खपत, भगवान से प्रार्थना की और फिर क्या अन्य संबंधित देवताओं मैं सोच सकता था, और अभी भी - शून्य।

यह सिर्फ आंखों के दूसरे सेट के लिए चिल्लाना आवश्यक हो सकता है, लेकिन कोई विचार?

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..<deviceToken.length { 
      tokenString += String(format: "%02.2hhx", arguments: [[deviceToken.bytes as! CVarArg][i]]) 
     } 

     FIRInstanceID.instanceID().setAPNSToken(deviceToken as Data, type: FIRInstanceIDAPNSTokenType.unknown) 

     print("tokenString: \(tokenString)") 
    } 
} 

और यहाँ एक्सटेंशन रहे हैं ...

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

टोकन कंसोल में प्रवेश कर रहे हैं, FCM जुड़ा हुआ है, क्लाउड संदेश मेरे प्रमाण पत्र रखा है ... तभी संभव संकेत मैं हो सकता है कि फायरबेस कंसोल उस डिवाइस को गिनता नहीं है जो इसे 'प्रेषित' के रूप में संदेश भेज रहा है।

enter image description here लेकिन कंसोल ठीक दिखता है।

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] <Debug> [Firebase/Core][I-COR000001] Configuring the default app. 
2016-12-15 00:07:05.514: <FIRInstanceID/WARNING> Failed to fetch APNS token Error Domain=com.firebase.iid Code=1001 "(null)" 
2016-12-15 00:07:05.520: <FIRMessaging/INFO> FIRMessaging library version 1.2.0 
2016-12-15 00:07:05.549 voltuser[4199:] <FIRAnalytics/INFO> Firebase Analytics v.3600000 started 
2016-12-15 00:07:05.549 voltuser[4199:] <FIRAnalytics/INFO> To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see this) 
2016-12-15 00:07:05.605 voltuser[4199] <Debug> [Firebase/Core][I-COR000018] Already sending logs. 
2016-12-15 00:07:05.679 voltuser[4199] <Debug> [Firebase/Core][I-COR000019] Clearcut post completed. 
2016-12-15 00:07:05.782 voltuser[4199] <Debug> [Firebase/Core][I-COR000019] Clearcut post completed. 
2016-12-15 00:07:05.824 voltuser[4199:] <FIRAnalytics/WARNING> 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:] <FIRAnalytics/INFO> Firebase Analytics enabled 
InstanceID token: c_4iSvTQcHw:APA91bGjKnPoH9LysKl9CQxCJRJsfqwXBSUFAmgRp-KEWKjWqe2j4nt6Y5gx8us41rB6eLnRCOwRntnbr_N1fh_swz8j-GvvChSsV3gvG8dufVFLpagdtOxrxPSgLubQrfw-JqkA-4wV 
Connected to FCM. 
And the snapshot says Snap (mx7zr3y6XpSGZ4uB4PhZ8QRHIvt2) <null> 
[AnyHashable("notification"): { 
    body = "THIS IS SO PAINFUL"; 
    e = 1; 
    title = "WHY WONT YOU WORK"; 
}, AnyHashable("from"): 99570566728, AnyHashable("collapse_key"): com.mishastone.voltuser] 

... लेकिन संदेश मेरे कंसोल में ठीक लॉगिंग कर रहा है। असल में, त्रुटियों में कोई परेशानी नहीं है!

आह

मेरा फोन नहीं मिल रहा है अग्रभूमि, पृष्ठभूमि या ऐप्लिकेशन से अधिसूचना के किसी भी प्रकार - कोई बात नहीं है। पिन। कुछ भी नहीं। नाडा। बस मेरे दिल की तोड़ने वाली आवाज़ें।

मेरा आईफोन वर्तमान में 9.3.5 पर है। अगर यह किसी की मदद करता है।

किसी भी मदद की बहुत सराहना की जाएगी - या वैकल्पिक पुश अधिसूचना प्रणाली के लिए सुझाव ...

+0

क्या आप फायरबेस कंसोल से या अपने ऐप सर्वर से अधिसूचना भेज रहे हैं? यदि ऐप सर्वर से, क्या आप नमूना पेलोड में जोड़ सकते हैं? फायरबेस कंसोल से –

+0

। –

+0

इस के साथ कोई भाग्य? मैं वर्तमान में उसी नाव में भी हूं – CharlieNorris

उत्तर

10

यह पता चल। पी। im स्विफ्ट 3 सिंटैक्स का उपयोग, आप अपने willPresent विधि

completionHandler अधिसूचना के लिए प्रस्तुति के विकल्प के साथ निष्पादित करने के लिए ब्लॉक में completionhandler याद कर रहे हैं। इस विधि के कार्यान्वयन के दौरान हमेशा इस ब्लॉक को किसी बिंदु पर निष्पादित करें।

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]) 

} 
+0

आह, तो यही वह था। अंततः बार-बार उदाहरण कोड को कॉपी और पेस्ट करके मैंने अपनी त्रुटि को ठीक कर दिया। इसके विनिर्देशों को इंगित करने के लिए धन्यवाद! –

+0

क्या यह सही है? ओपी का कहना है, "मेरा आईफोन वर्तमान में 9.3.5 पर है।", फिर भी यह फ़ंक्शन (और आपके द्वारा लिंक किए गए दस्तावेज़) का कहना है कि यह एसडीके 10.0+ – tospig

+0

के लिए है आप जीवन बचतकर्ता हैं !!! वाह .. वास्तव में धन्यवाद – ken

0

क्या आप वाकई बारे में अपने कोड एकदम सही है और अभी भी आप तो FCM सूचनाएँ प्राप्त Firebase कंसोल से p12 प्रमाणपत्र अपडेट कर लें करने में असमर्थ हैं कर रहे हैं। आपको पुश प्रमाण पत्र से केवल सुरक्षा कुंजी निर्यात करना होगा और इसे अपलोड करना होगा। आप अधिसूचनाएं प्राप्त करना शुरू कर देंगे।