Login has stopped working

Nothing has changed in the Auth0 code of my app, yet 7 hours ago, the login system shows this error:

  1. error: “access_denied”
  2. errorDescription: “Request to Webtask exceeded allowed execution time”
  3. state: “p5yhE-rIoSU2AqZAeK9TObgwbiZ-tccu”

Can anyone explain why this is suddenly happening and how to rectify it if possible?

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!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.