..
Size: a a a
..
AK
SR
SR
AK
AK
S🛸
AK
PS
AS
SR
AK
K
const axios = require('axios')
const { proxy } = require('./helper/config.js')
const options = {
method: 'get',
url: 'https://google.com',
proxy,
}
axios(options)
.then(res => console.log(res))
.catch(err => console.log(err))
module.exports = {
proxy: {
host: '12.34.567.890',
port: 12345,
auth: {
username: '...',
password: '...'
}
},
}
AS
const axios = require('axios')
const { proxy } = require('./helper/config.js')
const options = {
method: 'get',
url: 'https://google.com',
proxy,
}
axios(options)
.then(res => console.log(res))
.catch(err => console.log(err))
module.exports = {
proxy: {
host: '12.34.567.890',
port: 12345,
auth: {
username: '...',
password: '...'
}
},
}
K
K
AS
K
I
K