Panel 0.13.0 Release Candidate

I solved it by changing the PANEL_OAUTH_REDIRECT_URI to the main URI without the “/app” at the end

1 Like

By default I don’t think Panel would set the /app at the end since the redirect URI is generated like this:

redirect_uri = "{0}://{1}".format(
    self.request.protocol,
    self.request.host
)

Are you saying you manually set the PANEL_OAUTH_REDIRECT_URI to a value with /app before and that stopped working? If so that’s presumably a change at the Azure level.

Yes, I manually set PANEL_OAUTH_REDIRECT_URI to include “/app” on previous version of panel… But now without /app it is working as expected.