= new VK({
token: ''
})
const bot = new HearManager();
bot.hear('/привет', async (msg) => {
if(!msg.isOutbox) return;
await msg.send('Привет, я бот!');
});
bot.hear(/^температура (.+)$/i, async (msg) => {
if(!msg.isOutbox) return;
const city = msg.$match[1];
const response = await axios.get(https:/api.openweathermap.org/data/2.5/weather?q=${city}&units=metric&appid=);
const temperature = response.data.main.temp;
console.log(response)
await msg.send(Температура в городе ${city}: ${temperature}°C);
});
vk.updates.on('message_new', bot.middleware);
vk.updates.start().catch(console.error);`
Выводит ошибку из за того, что не может прочитать эту строку:
axios.get(`https:/api.openweathermap.org/data/2.5/weather?q=${city}&units=metric&appid=`)
Как сделать эту строку читаемой для js?
у вас https:/ а должно быть https://
Благодарю за помощь
Обсуждают сегодня