0
プッシュ通知がユーザに送信される通知テスト機能を実装します。これはParseでやるのがとても簡単でした。私はこの機能をFirebaseフレームワークと同じように複製しようとしています。Firebaseフレームワークを使用して自己に通知を送信します。
[[FIRInstanceID instanceID] getIDWithHandler:^(NSString * _Nullable identity, NSError * _Nullable error) {
if (error) {
[self stopWaitingForTestNotification];
}
else {
NSDictionary *payloadDict = @{@"alert": @"Success, Push Notifications are working.", SMAppRemoteNotificationTestNotificationIdentifierKey: @"true"};
[[FIRMessaging messaging] sendMessage:payloadDict to:identity withMessageID:@"test-notification" timeToLive:10];
}
}];
コンソールに通知やエラーが表示されないことに驚くことはありません。現在のユーザーを参照するのは間違った方法ですか、これは可能ですか?