Hello @Gurpreet0101Singh-9444
You can absolutely integrate OpenID Connect (OIDC) with Entra AD B2C using Custom Policies. This approach gives you full control over the authentication experience and enables support for virtually any standards-based identity provider.
Custom policies in Azure AD B2C allow you to define the exact user journey, including how authentication is handled, what identity providers are involved, and how claims are issued. This level of customization is particularly useful when working with external OIDC-compliant identity providers beyond the built-in options.
OpenID Connect is built on top of OAuth 2.0 and is widely supported across modern identity systems. Azure AD B2C can federate with most identity providers that adhere to the OIDC standard.
To implement this, you can follow Microsoft’s official guidance on configuring a generic OIDC provider within custom policies:
Hope this helps.