I am building a UWP app and .Net Core API. Both should be deployed at the customers' on-premises and authenticated with Azure Active Directory. Is there a way to authenticate the users without registering the application manually (And specifying the client id and other variables)?
Asked
Active
Viewed 99 times
1 Answers
0
Is there a way to authenticate the users without registering the application manually.
Azure Active Directory (Azure AD) is Microsoft’s multi-tenant, cloud based directory and identity management service. You have need to register the application, if you authenticated with Azure Active Directory.
For ADFS, you could refer to AD FS Scenarios for Developers, and it also need to register app at first.
Nico Zhu
- 32,367
- 2
- 15
- 36
-
Thank you for your answer. Is there a way to register the application programmatically in C# and get the ClientID and other parameters needed? I want to register the client for each customer automatically without their interference. – Walaa El Kerdy Jan 09 '18 at 10:26
-
Hi Nico, I was wondering if you have any answer for the above. In other words, can we create one app with all Azure Active Directory users without registering the app for each client? – Walaa El Kerdy Jan 15 '18 at 10:02
-
Sorry for my delay, you could register the application programmatically in C#, And I have found some [solutions](https://stackoverflow.com/questions/44619481/login-azurermaccount-and-related-equivalents-in-net-azure-sdk/44631758#44631758) that you could [refer](https://stackoverflow.com/questions/31684821/how-to-add-application-to-azure-ad-programmatically). – Nico Zhu Jan 17 '18 at 08:04