why can’t I connect using the credentials I configured in the UserDetails?
package com.HRM.HRmanager.security; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.core.userdetails.User; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.provisioning.InMemoryUserDetailsManager; @Configuration public class CustomSecurityConfig { @Bean public InMemoryUserDetailsManager userDetailsManager(){ UserDetails user = User.builder() .username(“user”) .password(“password”) .roles(“user”) .build(); System.out.println(user.getPassword()); return new InMemoryUserDetailsManager(user); } } bear in mind I am still new to Spring boot I tried clean install, rebooting, deleting the custom credentials in […]
why can’t I connect using the credentials I configured in the UserDetails?
package com.HRM.HRmanager.security; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.core.userdetails.User; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.provisioning.InMemoryUserDetailsManager; @Configuration public class CustomSecurityConfig { @Bean public InMemoryUserDetailsManager userDetailsManager(){ UserDetails user = User.builder() .username(“user”) .password(“password”) .roles(“user”) .build(); System.out.println(user.getPassword()); return new InMemoryUserDetailsManager(user); } } bear in mind I am still new to Spring boot I tried clean install, rebooting, deleting the custom credentials in […]
Procore Client authentication failed due to unknown client, no client authentication included, or unsupported authentication method
I am trying to create a login page that has a link to the procore developer portal and they can log in using their procore account. However, when I click on the login with procore button on my login page, it gives me the error above in the question title. I have double checked that my client id and client secret and redirect url are all matching.