Travel › Re: Living In Canada/Life As A Canadian Immigrant Part 2 by BurnerMan: 3:45pm On Jul 06 |
Hello,
I want to ask, for people who landed as PR, is it quite common to be requested to show the complete proof of funds that you declared during application.
I would appreciate answers from as many people who have first hand information. |
Travel › Re: Canadian Express Entry/Federal Skilled Worker Program - Connect Here Part 11 by BurnerMan: 9:45am On Dec 22, 2025 |
BurnerMan: Hello everyone,
I want to confirm if IRCC has made it compulsory to include tax clearance information as part of proof of work experience document?
Thank you 🤲 |
Travel › Re: Canadian Express Entry/Federal Skilled Worker Program - Connect Here Part 11 by BurnerMan: 3:32pm On Dec 19, 2025 |
Hello everyone,
I want to confirm if IRCC has made it compulsory to include tax clearance information as part of proof of work experience document?
Thank you |
|
|
|
|
Jobs/Vacancies › Re: 2024 Chevron Nigeria Experienced Professional Recruitment by BurnerMan: 3:50pm On Oct 26, 2024 |
|
Jobs/Vacancies › Re: 2024 Chevron Nigeria Experienced Professional Recruitment by BurnerMan: 1:48pm On Oct 26, 2024 |
Aeronazz: Is there anyone who wrote for the Software Engineer role? I did. Although, I can’t tell if the assessment got submitted cos the screen froze at the end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Programming › Re: Google Oauth With Spring Boot Security by BurnerMan(op): 9:35am On Sep 10, 2023 |
richebony: you need this dependency in your maven pom
dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-oauth2-client</artifactId> </dependency>
in your applications.properties add these
#GOOGLE OAUTH
# You need additional settings to configure your OAUTH service ..just check youtube spring.security.oauth2.client.registration.google.client-id= your-client-id spring.security.oauth2.client.registration.google.client-secret=your-secret
in your SecurityConfig class
@Configuration public class SecurityConfig {
@Bean public SecurityFilterChain securityFilterChain(HttpSecurity httpSecurity) throws Exception { return httpSecurity.authorizeHttpRequests(auth -> auth.requestMatchers("/" .permitAll() .anyRequest().authenticated()) .oauth2Login(Customizer.withDefaults()) .formLogin(Customizer.withDefaults()) // u can replace this with httpBasic and configure the URL .build(); } } Thanks bro, but i understand this flow but it doesnt fit into the context of what i am trying to do. Maybe I should give a bit more background on what I'm trying to do.. So I had custom configurations for some of the filters in the securityFilterChain. I customized the AuthenticationFilter(UsernamePasswordFilter), the authenticationManager, and an AuthenticationProvider - which loads the user from the database, dao stuff. Now, what I want to do configure another authenticationProvider that implements OpenID connect, and then add this to the authenticatonManager. I have searched spring docs but they don't seem to provide a flow for that. So that's what im struggling with bro. I hope you understand what I am saying boss? |
Programming › Google Oauth With Spring Boot Security by BurnerMan(op): 6:36pm On Sep 09, 2023 |
Has anyone implemented google oauth with spring boot at the back end ?
Will appreciate any help |
|
|
|
|
|
|