如何在iOS中使用Google Firebase向特定用户发送推送通知?

时间:2017-02-02 04:49:12

标签: ios objective-c firebase firebase-cloud-messaging

我需要使用FCM(Firebase云消息传递)向特定设备发送推送通知。如何在Objective C中发送通知?

如果有人知道任何教程,请给我链接。

提前致谢。

1 个答案:

答案 0 :(得分:1)

  1. 添加您要安装的pods,从Firebase控制台下载GoogleService-Info.plist文件。
  2. 将您的APNs证书上传到Firebase。
  3. 注册您的应用以获取远程通知。致电registerForRemoteNotifications
  4. 检索当前注册令牌,调用: NSString *refreshedToken = [[FIRInstanceID instanceID] token];
  5. 最后,您使用该令牌从Firebase控制台发送通知。
  6. 为了更好地说明,请参阅documentation