Questions tagged [auth0-delegated-admin]

23 questions
0
votes
2 answers

Authentication process with Auth0 moves the user away from our app and into another location

I am using Auth0 for authentication in my app, I've put the login button on the app's home screen , pressing the login button moves the user away from our app and into another location(Auth0 site), and then it takes us back after successful…
Robinia
  • 81
  • 1
  • 1
  • 5
0
votes
0 answers

Is delegation deprecated in Auth0?

I'm trying to POST to a Auth0 delegation URL to obtain an access token and getting a "Grant Type not allowed" error as seen below. (This is when not using Postman.) I came across a post in the forums that Delegation is deprecate in Auth0. Can anyone…
Nat
  • 161
  • 2
  • 17
0
votes
2 answers

lucene query filter not working

I am using this filter hook in my Auth0 Delegated Administration Extension. function(ctx, callback) { // Get the company from the current user's metadata. var company = ctx.request.user.app_metadata && ctx.request.user.app_metadata.company; if…
Bishan
  • 15,211
  • 52
  • 164
  • 258
0
votes
1 answer

profile object from auth0 is empty until the page is loaded

I have follow the documentation of auth0 to implement profile picture and other profile data. The profile object from auth0 is empty until the page is loaded. Here is my code to call profile data from navbar component, ngOnInit() { if…
kaws
  • 1
  • 1
0
votes
1 answer

Auth0 : Custom Login auth0.webAuth is not a constructor

Im using Custom UI login form. When I tried to call the JavaScript like in the Auth0 documentation. I got the following issue: auth0.webAuth is not a constructor I'm using the latest js file.
user2215155
  • 299
  • 3
  • 10
0
votes
1 answer

Auth0 Additional properties not allowed: memberships

I am using Auth0 Delegated Administration Extension to manage users. When I am trying to create user, I am getting this error. Oh snap! You got an error! An error occurred while creating the user: {"statusCode":400,"error":"Bad…
Bishan
  • 15,211
  • 52
  • 164
  • 258
0
votes
0 answers

How do you solve Auth0's URL Mismatch error

I'm trying to implement Auth0 with lock (version 10.11.0) inside my Angular2 app. Auth0 works if I list every possible route in Auth0's client's Allowed Callback URLs setting. It seems Auth0 picks up the callback URL from whatever URL the user…
Tom Schreck
  • 5,177
  • 12
  • 68
  • 122
0
votes
1 answer

Auth0 Delegated Administration Extension

I am trying to use Auth0 Delegated Administration Extension in my app. For that, need to add a config file as below. { "AUTHORIZE_API_KEY": "mysecret", "EXTENSION_SECRET": "mysecret", "WT_URL": "http://localhost:3000/", "AUTH0_DOMAIN":…
Bishan
  • 15,211
  • 52
  • 164
  • 258
1
2