RickBlog

恩返し

プッシュ通知に画像を付ける

・Firebase Cloud Messaging(FCM)
・Cloud Functions(Python)
iOSバイスに画像付きプッシュ通知を送る。

参考 https://firebase.google.com/docs/cloud-messaging/send-message?hl=ja

notification=messaging.Notification(
        title='',
        body=''
)

この箇所にimageを入れる

notification=messaging.Notification(
        title='',
        body='',  
        image=''
)

mutable-contentを設定する必要がなかった。