This config works for Authorization Code Flow const oAuthConfig = { issuer: 'https://localhost:44329', redirectUri: baseUrl, clientId: 'TealTech_App', responseType: 'code', scope: 'offline_access TealTech', requireHttps: true, };
This config brings me to the login loop for Resource Owner Password Flow const oAuthConfig = { issuer: 'https://localhost:44329', // IdentityServer url clientId: 'TealTech_App', dummyClientSecret: 'secret pulled from [IdentityServerClientSecrets] table', scope: 'offline_access TealTech', }; **Is dummyClientSecret the proper key? I've also tried clientSecret but same behavior.
AzureAD compile issue.
I've created a new MVC solution using 4.0 and I'm trying to test the AzureAD integration.
https://community.abp.io/articles/how-to-use-the-azure-active-directory-authentication-for-mvc-razor-page-applications-4603b9cf
When I try to follow this article or look at the sample code presented for the MVC AzureAD integration I get this compile error.
authenticationbuilder does not contain a definition for addidentityserverauthentication
The current documentation https://docs.abp.io/en/abp/latest/Modules/IdentityServer#identityserver-module
Just says TODO. Any pointers here.