You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error in: ROOT/vendor/thenetworg/oauth2-azure/src/Provider/Azure.php, line 240
using RuntimeException from the root namespace fixes the error
change
throw new RuntimeException
to
throw new \RuntimeException
Also my Application Id is found in the appid claim while aud contains https://graph.windows.net/
changing the token claim check on line 239 from aud to appid allows the token to be validated correctly
The text was updated successfully, but these errors were encountered:
Getting this error with
Error in: ROOT/vendor/thenetworg/oauth2-azure/src/Provider/Azure.php, line 240
using RuntimeException from the root namespace fixes the error
change
throw new RuntimeException
to
throw new \RuntimeException
Also my Application Id is found in the appid claim while aud contains https://graph.windows.net/
changing the token claim check on line 239 from aud to appid allows the token to be validated correctly
The text was updated successfully, but these errors were encountered: