79418809

Date: 2025-02-06 17:25:38
Score: 1.5
Natty:
Report link

On Azure AD B2C, we need to filter by mail instead. (Thanks zoke for most of this)

    var graphUser = (await graphClient.Users.GetAsync(
        config => config.QueryParameters.Filter = $"mail eq '{user.Email}'"))?
        .Value?
        .FirstOrDefault();
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Michael Ulloa