Answer the question
In order to leave comments, you need to log in
How to fix an error when creating a tunnel through ngrok?
I'm trying to create a tunnel through Ngrok, I get an error:
ngrok.connect({
proto: 'tcp',
addr: 25565,
authtoken: '5u****UT',
region: 'eu'
}, (err, url) => {
if (err) {
console.error('Error while connecting Ngrok',err);
return new Error('Ngrok Failed');
} else {
console.log('Tunnel Created -> ', url);
console.log('Tunnel Inspector -> http://127.0.0.1:4040');
}
}).catch(err => {
console.log(err);
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question