API POST: https://login.microsoftonline.com/common/oauth2/token
MY Senerio :
Step1: I need to login to my Microsoft 2FA enabled account through rest API backend service and get the access token.
Step2: With that access token need to hit powerbi account API to get embedded token.
Issue: This process has to be fully REST API with NO prompt to take code from users. When 2FA is enabled in Microsoft account .This API doesn't work. It shows this error
"error": "interaction_required",
"error_description": "AADSTS50076: Due to a configuration change made by your administrator, or because you moved to a new location, you must use multi-factor authentication to access '00000009-0000-0000-c000-000000000000'. Trace ID: 05451564-7c99-454f-9f1c-85b5d0ac6a00 Correlation ID: 026670ad-9c04-46d8-828b-0c1435938e90 Timestamp: 2023-11-05 14:11:35Z",
"error_codes": [
50076
]
But by disable 2FA it works well. So, how can I call this API by enabling 2FA ?
If you're receiving an "interaction_required" error when calling an API with 2FA-enabled Microsoft accounts, it means that the application is trying to perform a non-interactive authentication while the account is configured for multi-factor authentication (MFA).
In such cases, you typically need to use a different authentication method, such as a certificate or client secret or Device code flow, which doesn't rely on user interaction for MFA.
Using client secret
Here's how I modified my application to use a client secret for authentication, which work is Working fine with 2FA-enabled accounts
Result
Device code flow
The device code flow is a two-step authentication flow. In the first step, the user opens a web browser and navigates to a specific URL. They are then prompted to enter a device code that is displayed on the application. Once the user has entered the device code, they are granted access to the application.