Hi everyone.
I am trying to develop a rule in Auth0, that will ping our API. While developing this, it would be great if I could expose my local server (then I don’t have to deploy my code to test it). To do this I use serveo.net.
Testing this out with Postman works great, serveo redirects to my local server.
However when trying this from Auth0 with a rule like this:
const axios = require('axios@0.19.2');
const axiosSettings = {
method: 'post',
url: '<serveo-url>',
data: {email: user.email},
headers: {'content-type': 'application/json'},
timeout: 15000
};
axios(axiosSettings)
.then(res => callback(null, user, context))
.catch(err => callback(null, user, context));
I get the following error:
ERROR: Max redirects exceeded.
When checking the Serveo logs, I can see that many requests are forwarded.
Can you help me out here ?
UPDATE
Tried using ngrok as an alternative to serveo, and it worked with no issues !