React Native 之推送通知

推送通知作為app的常用功能功能白华,一般分為本地通知和遠程通知。我們這里主要講解一下遠程推送通知舔株,因為這個項目為國外項目,推送我采用的是firebase的推送服務(wù)暮屡,不過原理是一樣的。

一.遠程通知

找了很多框架毅桃,最后選擇了react-native-fcm褒纲,鏈接如下:https://github.com/evollu/react-native-fcm集成過程文檔都有,國內(nèi)的可以采用極光推送jpush-react-native钥飞,鏈接:https://github.com/jpush/jpush-react-native

(一)react-native-fcm

1.iOS集成參考
https://medium.com/google-cloud/push-notification-for-react-native-bef05ea4d1d0


$> cd ios && pod init


# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'ProjecName' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
use_frameworks!

# Pods for ProjecName
pod 'Firebase/Messaging'

target 'ProjecName-tvOSTests' do
inherit! :search_paths
# Pods for testing
end

target 'ProjecNameTests' do
inherit! :search_paths
# Pods for testing
end

end

$> pod install

還有一點就是蘋果新推出的p8證書配置莺掠,多個推送證書配置步驟如圖:


屏幕快照 2018-01-09 下午4.03.09.png

屏幕快照 2018-01-09 下午4.03.20.png

屏幕快照 2018-01-09 下午4.03.41.png

屏幕快照 2018-01-09 下午4.32.49.png

屏幕快照 2018-01-09 下午4.33.01.png

因為p8證書只能下載一次,所以要保存好代承。
2.android集成參考
https://blog.botreetechnologies.com/how-to-send-push-notification-to-the-android-phones-using-react-native-and-fcm-b28e1746da7b

有一點提示在android通知時圖片做成透明的如:

<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@mipmap/ic_notif" />

3.在RN中集成


FCM.requestPermissions();

FCM.getFCMToken().then(token => {
if(token){
console.log("TOKEN (getFCMToken)=========", token);
// alert("getFCMToken"+token)
}
});
if(Platform.OS === 'ios'){
FCM.getAPNSToken().then(token => {
console.log("APNS TOKEN (getFCMToken)", token);
});
}

FCM.getInitialNotification().then(notif => {
console.log("INITIAL NOTIFICATION", notif)
});

this.notificationListener = FCM.on(FCMEvent.Notification, notif => {
console.log("Notification", notif);
// if(notif.local_notification){
// return;
// }
// if(notif.opened_from_tray){
// return;
// }
if (notif && notif.local_notification) {
console.log(".local_notification");
return;
}
// if(notif._notificationType==="will_present_notification"){
// return;
// }
if(notif &&notif.opened_from_tray){
console.log("opened_from_tray");
return;
}

if(Platform.OS ==='ios'){
//optional
//iOS requires developers to call completionHandler to end notification process. If you do not call it your background remote notifications could be throttled, to read more about it see the above documentation link.
//This library handles it for you automatically with default behavior (for remote notification, finish with NoData; for WillPresent, finish depend on "show_in_foreground"). However if you want to return different result, follow the following code to override
//notif._notificationType is available for iOS platfrom
switch(notif._notificationType){
case NotificationType.Remote:
notif.finish(RemoteNotificationResult.NewData) //other types available: RemoteNotificationResult.NewData, RemoteNotificationResult.ResultFailed
break;
case NotificationType.NotificationResponse:
notif.finish();
break;
case NotificationType.WillPresent:
notif.finish(WillPresentNotificationResult.All) //other types available: WillPresentNotificationResult.None
break;
}


}
this.showLocalNotification(notif);
this.refreshTokenListener = FCM.on(FCMEvent.RefreshToken, token => {
//console.log("TOKEN (refreshUnsubscribe)", token);
});

// direct channel related methods are ios only
// directly channel is truned off in iOS by default, this method enables it
FCM.enableDirectChannel();
this.channelConnectionListener = FCM.on(FCMEvent.DirectChannelConnectionChanged, (data) => {
// console.log('direct channel connected' + data);
});
setTimeout(function() {
FCM.isDirectChannelEstablished().then(d => console.log(d));
}, 1000);
})
}

** This method display the notification on mobile screen**
showLocalNotification(notif) {
console.log("showLocalNotification", notif);
console.log(notif.title);
console.log(notif.body);
console.log(notif.notif.click_action);
FCM.presentLocalNotification({
title: notif.title,
body: notif.body,
priority: "high",
click_action: notif.click_action,
show_in_foreground: true,
local: true,
sound:"defaut"
});
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市渐扮,隨后出現(xiàn)的幾起案子论悴,更是在濱河造成了極大的恐慌,老刑警劉巖墓律,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件膀估,死亡現(xiàn)場離奇詭異,居然都是意外死亡耻讽,警方通過查閱死者的電腦和手機察纯,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人饼记,你說我怎么就攤上這事香伴。” “怎么了具则?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵即纲,是天一觀的道長。 經(jīng)常有香客問我博肋,道長低斋,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任匪凡,我火速辦了婚禮膊畴,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘病游。我一直安慰自己唇跨,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布礁遵。 她就那樣靜靜地躺著轻绞,像睡著了一般。 火紅的嫁衣襯著肌膚如雪佣耐。 梳的紋絲不亂的頭發(fā)上政勃,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天,我揣著相機與錄音兼砖,去河邊找鬼奸远。 笑死,一個胖子當(dāng)著我的面吹牛讽挟,可吹牛的內(nèi)容都是我干的懒叛。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼耽梅,長吁一口氣:“原來是場噩夢啊……” “哼薛窥!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起眼姐,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤诅迷,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后众旗,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體罢杉,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年贡歧,在試婚紗的時候發(fā)現(xiàn)自己被綠了滩租。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片赋秀。...
    茶點故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖律想,靈堂內(nèi)的尸體忽然破棺而出猎莲,到底是詐尸還是另有隱情,我是刑警寧澤蜘欲,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布益眉,位于F島的核電站,受9級特大地震影響姥份,放射性物質(zhì)發(fā)生泄漏郭脂。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一澈歉、第九天 我趴在偏房一處隱蔽的房頂上張望展鸡。 院中可真熱鬧,春花似錦埃难、人聲如沸莹弊。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽忍弛。三九已至,卻和暖如春考抄,著一層夾襖步出監(jiān)牢的瞬間细疚,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工川梅, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留疯兼,地道東北人。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓贫途,卻偏偏與公主長得像吧彪,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子丢早,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,472評論 2 348