Is it possible for AD B2C to be utilized for non-interactive authentication. ie I want to pass-in a username (email-id)/password and be authenticated into application (not API backend but a web application bypassing a login flow - basically auto-login that user interaction with a user/passwords and redirect to a resource)
I have used ROPC for backend API could that be utilized or is there any other way.
Can we get access and id token from a call similar to :
https://<tenant-name>.b2clogin.com/<tenant-name>.onmicrosoft.com/<policy-name>/oauth2/v2.0/authorize?
client_id=<application-ID>
&nonce=anyRandomValue
&redirect_uri=https://jwt.ms
&scope=<application-ID-URI>/<scope-name>
&response_type=code
without the interactive flow and providing a redirectURL.
Thanks