₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,112 members, 8,448,739 topics. Date: Monday, 20 July 2026 at 06:30 PM

Toggle theme

BurnerMan's Posts

Nairaland ForumBurnerMan's ProfileBurnerMan's Posts

1 (of 1 pages)

TravelRe: 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.
TravelRe: 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
🤲
TravelRe: 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/VacanciesRe: 2024 Chevron Nigeria Experienced Professional Recruitment by BurnerMan: 3:50pm On Oct 26, 2024
Aeronazz:
Same and Same
It’s crazy
Jobs/VacanciesRe: 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
ProgrammingRe: 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("/"wink.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?
ProgrammingGoogle 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

1 (of 1 pages)