Hello there! I'm currently having some issues with MSAL Python where, when using acquire_token_interactive
, I get an error that says "No reply address provided". This is odd, as the redirect is clearly configured with Auth0, as shown here in AAD:

The code I am using is as follows (with specifics altered for privacy reasons). Any help would be much appreciated.
app = PublicClientApplication(
'app_id',
authority='https://login.microsoftonline.com/tenant_id'
)
token = None
token = app.acquire_token_interactive(scopes=['User.Read'])
if 'access_token' in token:
return token['access_token']
else:
print(token.get("error"))
print(token.get("error_description"))
print(token.get("correlation_id"))
exit(1)