All Questions
5 questions
2
votes
1
answer
3k
views
Securing Spring Cloud Gateway with bearer-only
I currently want to secure my microservice architecture with a Spring Cloud Gateway. There is FrontEnd which authenticates itself to a Keycloak server and then sends the token with every request.
Now ...
4
votes
1
answer
3k
views
Configure Spring Gateway with Spring Authorization Server
I have Spring Gateway application with the following Gradle dependencies:
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-gateway'
implementation 'com.netflix.eureka:...
0
votes
1
answer
2k
views
Http status 401 spring cloud gateway token relay
I have a spring cloud gateway service as Oauth2 client and Token Relay, which is configured with Oauth2 resource server. This setup works fine using Okta as authorization server but changing to Google,...
4
votes
0
answers
4k
views
How to make API Gateway Stateless for Authentication/Authorization Process Using Oauth2?
In my design I have an API gateway (spring cloud api gateway), authorization server (Oauth2) and a resource server (microservice). (I have also a CAS server but now it can be ignored for simplicity)
...
0
votes
2
answers
6k
views
No provider found for class org.springframework.security.oauth2.client.authentication.OAuth2AuthorizationCodeAuthenticationToken
I have created three application as "spring cloud gateway(8081)", "spring oauth2 auth server(8094)" and "spring oauth2 resource server(8097)".
When I want to request to resource server, first I need ...