Reputation: 31333
When using the MSAL library to authentication against Azure Active Directory from a UWP app, is there anything special that must be done with certificates to make it work? ie, does the certificate required to run the UWP app have to be registered or "known" somehow by the Azure AD App Registration?
I would appreciate any references to online resources that delve more into this topic if the answer is 'yes'.
Upvotes: 0
Views: 348
Reputation: 9549
Yes!
For mobile platforms such as UWP, Xamarin.iOS and Xamarin.Android, they only support public client applications. The public client application does not know how to prove the identity of the application to the identity provider. A secure connection can only be achieved on the web application or Web API backend by deploying a certificate.
please see:
Upvotes: 1