How can I disable Auth0 integration?
See original GitHub issueI have used docker-compose up
to run the krakend, but the website let me to login.
How can I disable Auth0 integration? or how can I get these auth0 params?
var AUTH0_CLIENT_ID='AUTH0_CLIENT_ID';
var AUTH0_DOMAIN='AUTH0_DOMAIN';
var AUTH0_AUDIENCE = 'AUTH0_AUDIENCE';
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (5 by maintainers)
Top Results From Across the Web
How can I disable the login when testing locally?
Hi, Is there a way to disable the login when working on my Angular app locally? Each change in my app re-compiles the...
Read more >How can I disable Auth0 integration? · Issue #12 - GitHub
I have used docker-compose up to run the krakend, but the website let me to login. How can I disable Auth0 integration? or...
Read more >How to disable/enable Sign Ups for a specific application with ...
https://community.auth0.com/t/disable-signup-from-auth0-ui-and-enable-social-login/29227/2 · Share.
Read more >Auth0 integration. (Windows version)
... <configuration> <configSections> ... <!-- To enable Auth0 - uncomment the line below, to disable - comment out --> < ...
Read more >Auth0 SSO Integration Guide - PagerDuty
When you complete the steps in this guide and are done testing, you can return to this page to disable user logins via...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@kpacha
In the README.md under Start the service it explains how to configure these values. But, to me the heading ‘Only if you want to try the Auth0 integration…’ implies that the Auth0 configuration is optional and should work without any configuration.
If it’s not optional, then that heading should be re-worded to avoid confusion. Otherwise, it might be worth disabling
checkJwt
, andcheckScopes
if the configuration fields are empty or set to default.@crnastena Somehow GitHub sent me a notification about this thread today, months later …
Here are my notes from that time (an year ago). Not sure if these still hold or things changed that much that I’d have to follow again all the steps and see what’s different now. But anyway, hope it helps.
Playing with
krakend-playground
Logged in to Auth0 and created:
dxps.eu.auth0.com
KrakendPlaygroundSPA
Updated
web/auth0-variables.js
file with:Suppose you forgot or want to change one of these values, after updating this file you can rebuilt the image with
docker-compose build web
To get the access token as
JWS
, I created an Custom API named Private with Identifier ashttp://localhost:8080/private
(used as theaudience
param on authorization calls).read:private
permission in the API definition (Permissions tab).Related to user access mgmt:
user
role and added thatread:private
permission defined at that API level.user
role. Then you can validate the result by going to Permissions tab and see that indirectly (assigned through the role) the account has theread:private
permission.Started all services using
docker-compose up
UI (a simple SPA-like) is accessible at http://localhost:3000
Although JWS looks alright (jwt.io extension shows it), KrakenD throws the error
Error #01: no Keys has been found
krakend.json
file was updated on"endpoint": "/private/auth0"
forkrakend-jose/validator
config to have:Started the services again with
docker-compose up