Not able to fetch users from yesterday

Hey since yesterday i am not able to fetch all user details from AUTH0 has there been any change it it? it was working fine previously
code is something like this:

 get_token = GetToken(settings.AUTH0_DOMAIN)
        token = get_token.client_credentials(settings.AUTH0_APPLICATION_CLIENT_ID,
                                            settings.AUTH0_APPLICATION_CLIENT_SECRET,
                                            f"https://{settings.AUTH0_DOMAIN}/api/v2/")

        # Fetch users from Auth0 with given user_metadata
        auth0 = Auth0(settings.AUTH0_DOMAIN, token["access_token"])
        try:
            # Get all users
            all_users = auth0.users.list()

Hi @hsingh2,

Are you seeing any errors or anything?

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