Guest User

Untitled

a guest
Oct 16th, 2023
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const fetch = require('node-fetch');
  2.  
  3. const URL = "https://portal.vietcombank.com.vn/Usercontrols/TVPortal.TyGia/pXML.aspx";
  4. const headers = {
  5.     "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.46"
  6. };
  7.  
  8. fetch(URL, { timeout: 10000, headers })
  9.     .then(res => res.text())
  10.     .then(data => console.log(data));
  11.  
Advertisement
Add Comment
Please, Sign In to add comment