socket.io.
Основные настройки:
const { options } = require('laravel-mix');
const request = require('request');
const { Auth } = require('request/lib/auth');
const http = require('http').Server();
const io = require('socket.io')(8080, {});
io.use(function(socket, next) {
console.log(socket.handshake.auth.token)
request.get({
url : "http://nginx_laravel/api/auth/check",
headers : {Authorization: 'bearer ' + socket.handshake.auth.token},
json: true
}, function(error, response, json) {
console.log(json);
if (json !== true ) {
next(new Error('Auth error'));
} else {
next();
}
});
});
Он выбирает из базы новости и бьёт в контейнер с именем nginx_laravel по api laravel. При попытке подключиться через постман к серверу по порту 8080 выдаёт ошибку:
GET http://айпи_сервера:8080/socket.io/?EIO=4&transport=polling&t=O4KwaSd net::ERR_CONNECTION_REFUSED
то есть пытаешься подключиться к контейнеру по его имени с хоста? молодец
Обсуждают сегодня