Firebase
を使用していたとします。every registered
のユーザーには、いくつかのコレクションの右側に保存されているdevice token id
があります。 (流れの登録)
ので、あなたからこの関数を呼び出すと思います
のは、あなたが(あいまいな定義がサーバーレスアーキテクチャに実行されている機能になり、そしてそこが呼び出されたとき、それらが実行されます)cloud functions
を使用していたとしましょう
- extract that http request
- who is sending the message (uid, message)
- who needs to receive that message (someone)
- query that someone's device token id and save it to recipient_device_token_id
- construct to push notification payload (message)
- send push notification for recipients using its recipient_device_token_id
- end the http response
ほら、私は他があると確信しています:ポストメソッド
ロジックとHTTPを経由してアプリそれを行う方法ですが、これはあなたのアプリからクラウドへのすべてのロジックを抽出します。
アップストリームメッセージが本当に必要な場合は、https://firebase.google.com/docs/cloud-messaging/ios/upstreamをお読みください。バックエンドロジック+通常のダウンストリーム通知を検討します。 – algrid