“Como OT Enviar agente de usuário no cabeçalho NodeJS HTTPS” Respostas de código

Como OT Enviar agente de usuário no cabeçalho NodeJS HTTPS

const options = {
  hostname: 'www.panda.tv',
  path: 'ajax_chatinfo?roomid=89757',
  headers: { 'User-Agent': 'Mozilla/5.0' }
};

http.get(options, function(res) {
  res.on('data', function(chunk) { console.log(chunk) });
});
Vast Vulture

Como OT Enviar agente de usuário no cabeçalho NodeJS HTTPS

http.get({ url: 'http://www.panda.tv/ajax_chatinfo?roomid=89757',
    agent: 'Mozilla/5.0' }, function(res) {
    res.on('data', function(chunk) {
        doSomething();
    });
});
Vast Vulture

Respostas semelhantes a “Como OT Enviar agente de usuário no cabeçalho NodeJS HTTPS”

Perguntas semelhantes a “Como OT Enviar agente de usuário no cabeçalho NodeJS HTTPS”

Mais respostas relacionadas para “Como OT Enviar agente de usuário no cabeçalho NodeJS HTTPS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código