【发布时间】:2021-01-25 21:59:32
【问题描述】:
这是我的代码
const functions = require('firebase-functions');
const admin = require('firebase-admin');
const axios = require('axios');
admin.initializeApp(functions.config().functions);
exports.sendNotifications = functions
.region('europe-west1')
.pubsub.schedule('every day 04:00').onRun(async context => {
axios.get('http://niksimoni.pythonanywhere.com/api/pulizie_domani')
.then(listOfStreets => {
const streets = listOfStreets.data.strade;
const promises = [];
for (const street of streets) {
const p = axios.get('http://niksimoni.pythonanywhere.com/api/data_pulizie?indirizzo=' + street)
.then(listOfHours => {
const ora = listOfHours.data.ora;
var topic = street.split(" ").join("-");
var message = {
data: {
title: street,
subtitle: 'Pulizia domani alle ' + ora,
},
topic: topic
};
admin.messaging().send(message)
.then((response) => {
// Response is a message ID string.
console.log('Successfully sent message:', response);
})
.catch((error) => {
console.log('Error sending message:', error);
});
})
promises.push(p);
}
return Promise.all(promises);
})
.catch(error => {
console.log(error);
});
});
我尝试将 axios 替换为请求,但它并没有解决问题,无论我更改什么,我总是收到此错误:'发出请求时出错:客户端网络套接字在建立安全 TLS 连接之前已断开连接。错误代码:ECONNRESET' 我试图学习如何处理承诺,我以为我理解它,但也许我错了。 任何帮助将不胜感激
【问题讨论】:
标签: javascript node.js firebase google-cloud-functions firebase-cloud-messaging