Application callback URLs encoding problem
See original GitHub issueWhen I deploy the following application
clients:
- name: 'MyApp'
app_type: 'spa'
oidc_conformant: true
is_first_party: true
callbacks:
- '##MYAPP_CALLBACK_URLS##'
jwt_configuration:
alg: 'RS256'
lifetime_in_seconds: 36000
secret_encoded: false
grant_types:
- authorization_code
- implicit
- refresh_token
with MYAPP_CALLBACK_URLS set to
MYAPP_CALLBACK_URLS=http://localhost:3000/authenticated, http://localhost:3080/authenticated
Auth0 complains that callback URL is not listed in the app. When I open the app settings and manually delete and re-add the spaces everything works. Visually there’s no difference but certainly the spaces are not what they appear to be.
Issue Analytics
- State:
- Created 5 years ago
- Comments:13 (4 by maintainers)
Top Results From Across the Web
Encoding callbacks - Adjust Help Center
Encoding callbacks. URL encoding is the practice of converting sensitive sections of complex URLs into code so that they can be read by...
Read more >Callback URLs | Docs | Twitter Developer Platform
If you receive an error, please make sure that the callback URL that you are using in your authentication requests is HTTP encoded,...
Read more >Path encoding on callback URL? - Scripting - Drafts Community
I'm creating an action to send text to Obsidian via the URL scheme. ... a look to determine if it is a data/action...
Read more >Encode “/“ inside CallbackURL - Scriptable - Automators Talk
The CallbackAPIs automatically perform URL encoding on parameters but not for the slash character where I believe it should be encoded as %2F....
Read more >Callback problem with an app - Security & authorization (OAuth)
<?xml version='1.0' encoding='UTF-8'?><errors><error code="415">Callback URL not approved for this client application. Approved callback URLs can be ...
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 Free
Top 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

are working fine.
working fine if
MYAPP_CALLBACK_URLSis defined as array in the config:and
working fine if
MYAPP_CALLBACK_URLSis defined as stringified array in the config:I will close the issue for now. I will try doing what is suggested by @zxan1285 and come back if needed.