We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Auth0 Authorization Extension documentation access_token is mentioned as required, but in Rule generated by this extension allows to request using just header's x-api-key property for /api/users/{user_id}/policy/{client_id} endpoint: request.post({ url: EXTENSION_URL + "/api/users/" + user.user_id + "/policy/" + context.clientID, headers: { "x-api-key": "{x-api-key}" }, json: { connectionName: context.connection || user.identities[0].connection, groups: user.groups }, timeout: 5000 }, cb);
request.post({ url: EXTENSION_URL + "/api/users/" + user.user_id + "/policy/" + context.clientID, headers: { "x-api-key": "{x-api-key}" }, json: { connectionName: context.connection || user.identities[0].connection, groups: user.groups }, timeout: 5000 }, cb);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Auth0 Authorization Extension documentation access_token is mentioned as required, but in Rule generated by this extension allows to request using just header's x-api-key property for /api/users/{user_id}/policy/{client_id} endpoint:
request.post({ url: EXTENSION_URL + "/api/users/" + user.user_id + "/policy/" + context.clientID, headers: { "x-api-key": "{x-api-key}" }, json: { connectionName: context.connection || user.identities[0].connection, groups: user.groups }, timeout: 5000 }, cb);
The text was updated successfully, but these errors were encountered: