79487539

Date: 2025-03-05 19:57:14
Score: 0.5
Natty:
Report link

You can use the TokenRequestContext with AuthenticateAsync as per

Micosoft Doc - InteractiveBrowserCredential.AuthenticateAsync Method

So in you code you can do this:

var tokenRequestContext = new TokenRequestContext(_scopes);
AuthenticationRecord authRecord = await interactiveCredential.AuthenticateAsync(tokenRequestContext);
Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tom_L