GithubHelp home page GithubHelp logo

Comments (3)

shawnmclean avatar shawnmclean commented on July 20, 2024

Hi @zachrickards. Where are you doing the console.log? I've just tested this from a rule and hook and its showing the output in this extension.

from auth0-extension-realtime-logs.

fyockm avatar fyockm commented on July 20, 2024

@zachrickards there is a known issue whereby logging will not work for cron type webtasks if you have selected Node 8. as @shawnmclean mentioned, logging from other extensibility points (rules/hooks/custom db scripts) should be working as expected.

from auth0-extension-realtime-logs.

leberknecht avatar leberknecht commented on July 20, 2024

Can second that, no console.log output shown from my post-registration hook. It does show the even around it though:
image

My snippet:

/**
* Handler that will be called during the execution of a PostUserRegistration flow.
*
* @param {Event} event - Details about the context and user that has registered.
* @param {PostUserRegistrationAPI} api - Methods and utilities to help change the behavior after a signup.
*/
console.log('testing')
const axios = require("axios");

exports.onExecutePostUserRegistration = async (event) => {
  if (event.request["user_agent"] != "Symfony HttpClient/Curl" && event.transaction) {
    return await axios.post(
    `${event.transaction.redirect_uri.replace("xxx.", "api.")}/users/signup`,
    {
      email: event.user.email,
    },
    {
      headers: {
        "X-Signup-Api-Key": `${event.secrets.SIGNUP_API_TOKEN}`,
      }
    }
  );
  }
};

the axios call is actually triggered. Doesnt matter if i test the action from the debug-feature or if its triggered from real-life call. Tested on firefox 114.0.1 and chrome 114.0.5735.198

from auth0-extension-realtime-logs.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.