NPR
NPR

Reputation: 53

Azure Active directory authentication and Xamarin app

I am new to Xamarin and Azure AD.

Currently I am working on one of the Xamarin cross platform mobile App which use Azure Active directory for user authentication.

So the issue is when I open my app instead of showing me the App login screen it redirects me to Microsoft login screen. I want my users to see my App login screen and use that for sign in instead of Microsoft login screen. Is there any way I can do that?

I would greatly appreciate any help. Thanks!

Upvotes: 1

Views: 408

Answers (1)

Fei Xue
Fei Xue

Reputation: 14649

When we integrate Azure AD with the application, it actual use the OAuth 2.0 l/OpenId Connect protoco. And based on the protocol, when the users need to enter the credential, it needs to redirect to the authorization server(Azure AD) like below.

enter image description here

If the users enter the credentials of Azure AD on a page which is not belongs Microsoft, it sounds like Phishing site and it will lead the security issues.

If you want to add company branding to your sign-in page, you can refer the article below:

Add company branding to your sign-in and Access Panel pages

Upvotes: 0

Related Questions