Я пытаюсь отправить сообщение через мое приложение, но я всегда получаю эту ошибку в heroku.Вот ошибка:
, а вот код API: https://github.com/devslopes-learn/mac-chat-api
фрагмент кода API:
client.on('newMessage', function(messageBody, userId, channelId, userName, userAvatar, userAvatarColor) {
//Create message
console.log(messageBody);
let newMessage = new Message({
messageBody: messageBody,
userId: userId,
channelId: channelId,
userName: userName,
userAvatar: userAvatar,
userAvatarColor: userAvatarColor
});
//Save it to database
newMessage.save(function(msg){
//Send message to those connected in the room
console.log('new message sent');
io.emit("messageCreated", newMessage.messageBody, newMessage.userId, newMessage.channelId, newMessage.userName, newMessage.userAvatar, newMessage.userAvatarColor, newMessage.id, newMessage.timeStamp);
});
});