Nothing has changed in the Auth0 code of my app, yet 7 hours ago, the login system shows this error:
- error: “access_denied”
- errorDescription: “Request to Webtask exceeded allowed execution time”
- state: “p5yhE-rIoSU2AqZAeK9TObgwbiZ-tccu”
Can anyone explain why this is suddenly happening and how to rectify it if possible?
alexab
2
Could it be a rule? Maybe disable rules and check if it still happens?
Currently the only rule I have is:
function (user, context, callback) {
request.get('https://driver-upate.herokuapp.com/users/create', {
qs: {
userId: user.id
},
json: true
}, (err, response, body) => {
if (body.userId) {
context['inApp.userId'] = body.userId;
}
callback(null, user, context);
});
}
Which doesn’t seem to be effecting this.
Solved it. I changed the god damn API point it pointed to to add a hyphen as a god damn typo!!
1 Like
Glad you have eventually figured it out!
system
Closed
6
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.