I'm trying to deploy javascript function to Firebase that containing code to send SMS by Twilio.
Twilio js code run ok when testing it in stand alone separate file. When uploading complete code containing Twilio code to firebase function Error occur. I tried Nexmo and also face problem. Seem that firebase preventing Twilio and Nexmo!
Any suggestions?
Edited: Here is My Full Code
const functions = require("firebase-functions");
const admin = require('firebase-admin');
admin.initializeApp();
const db = admin.firestore();
const accountSid = 'AC18bda2c8129eedc0c13fb4123761eb44';
const authToken = 'xyzxyzyxz';
const client = require('twilio')(accountSid, authToken);
exports.realtimefunction=functions.database.ref('/{X}/{Y}/{Z}').onCreate((snapshot,context)=>{
client.messages
.create({
body: 'Hi',
messagingServiceSid: 'MGf7sdf39d9f979ssdfeb9f16',
to: '+201011111111'
})
.then(message => console.log(message.sid))
.done();
return null;
});
and error Message: Error: Functions did not deploy properly.
Are you on the free spark plan with Firebase? Firebase only allows external API access on the paid for "Blaze" plan see this question for the detailed answer. HTTP request to an external API in Firebase Cloud Functions (Spark Tier) refused