TeamHavit / Havit-Push-Server

🔔 콘텐츠 아카이빙 앱 HAVIT의 푸시알림을 담당하는 서버
13 stars 1 forks source link

[FIX] iOS 푸시 메시지 재변경 #30

Closed jokj624 closed 2 years ago

jokj624 commented 2 years ago
let message = {
        data: {
          title: randomTitle as string,
          body: reminder.ogTitle as string,
          image: reminder.ogImage as string,
          url: reminder.url as string,
        },
        apns: {
          payload: {
            aps: {
                alert: {
                    'title': randomTitle as string,
                    'body': reminder.ogTitle as string,
                    'url': reminder.url as string,
                }
              'category': 'havit'
              'thread-id': '5280'
              'mutable-content': 1
            },
          },

          fcm_options: {
            image: reminder.ogImage as string,
          },
        },
        token: reminder.userId['fcmToken'],
      };