🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

fcm-rest

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
f

fcm-rest

FCM (send-message) implementation based on REST API, supports proxy

1.0.3
latest
96

Supply Chain Security

100

Vulnerability

100

Quality

100

Maintenance

100

License

Network access

Supply chain risk

This module accesses the network.

Found 1 instance in 1 package

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Dependencies have 1 high alert.

Socket optimized override available

Version published
Weekly downloads
7
133.33%
Maintainers
1
Weekly downloads
 
Created
Issues
0

FCM-REST

npm npm license npm downloads

FCM implementation based on REST API, supports proxy. No dependencies on firebase framework.

Implements send-message HTTP APIs v1 and legacy

Legacy API https://firebase.google.com/docs/cloud-messaging/send-message#send_using_the_fcm_legacy_http_api

V1 API https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages

Installation

npm install fcm-rest

Usage

import fcm from 'fcm-rest'
//const fcm = require('fcm-rest')

// recipient
const clientToken = 'ZkVNZ...'
// Use legacy FCM API
const serverKey = 'AAAA...'
await fcm.sendMessageLegacy(serverKey, clientToken, {
  notification: { title: 'Hi there' }
})
// Use v1 FCM API
const gcpServiceAccount = {
  client_email: '***',
  project_id  : '***',
  private_key : '***',
  ...
}
await fcm.sendMessageV1(gcpServiceAccount, clientToken, {
  notification: { title: 'Hi there' }
})

// Send v1 topic
await fcm.sendMessageV1(gcpServiceAccount, undefined, {
  notification: { title: 'Hi there' },
  topic: 'topic-name'
})

FAQs

Package last updated on 02 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts