Skip to content

使用 Axios 获取 EventStream

Published: at 09:29 AMSuggest Changes

用 Axios 获取 EventStream

const response = await axios.get('https://stream.example.com', {
    headers: {Authorization: `Bearer ${token}`, 
    responseType: 'stream'
});

const stream = response.data;

stream.on('data', data => {
    console.log(data);
});

stream.on('end', () => {
    console.log("stream done");
});

Previous Post
JS 图片处理研究笔记
Next Post
Go 语言获取 IP 地址及对应城市信息