Spaces:
Running
Running
| const axios = require('axios'); | |
| const url = 'https://bcast.slnbullion.com:443/VOTSBroadcastStreaming/Services/xml/GetLiveRateByTemplateID/sln'; | |
| axios.get(url, { | |
| timeout: 10000, | |
| headers: { 'User-Agent': 'Mozilla/5.0' } | |
| }).then(r => { | |
| console.log('STATUS:', r.status); | |
| console.log('CONTENT-TYPE:', r.headers['content-type']); | |
| console.log('DATA (first 2000 chars):'); | |
| console.log(r.data.toString().substring(0, 2000)); | |
| }).catch(e => console.log('ERR:', e.message)); | |