Hi @Code Bit · Thank you for reaching out.
In order to avoid SSO, you can use the Prompt parameter of OAuth protocol. By adding &prompt=login
at the end of the Invitation URL, you can force the user to provide credentials and do an interactive sign-in.
Prompt Indicates the type of user interaction that is required. Possible values at this time are:
-
prompt=login
will force the user to enter their credentials on that request, negating single-sign on. -
prompt=none
is the oppositeit will ensure that the user isn't presented with any interactive prompt whatsoever. If the request can't be completed silently via single-sign on, the Microsoft identity platform will return an interaction_required error. -
prompt=consent
will trigger the OAuth consent dialog after the user signs in, asking the user to grant permissions to the app. -
prompt=select_account
will interrupt single sign-on providing account selection experience listing all the accounts either in session or any remembered account or an option to choose to use a different account altogether.
-----------------------------------------------------------------------------------------------------------
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.