Questions tagged [spring-oauth2]

Official tutorial: https://spring.io/guides/tutorials/spring-boot-oauth2/

708 questions
-1
votes
1 answer

What are the endpoints oauth/check_token/ and oauth/token_key/?

The following command activates the end of the following: @Override public void configure(final AuthorizationServerSecurityConfigurer oauthServer) { oauthServer.tokenKeyAccess("permitAll()").checkTokenAccess("isAuthenticated()"); } Now, my…
-2
votes
1 answer

Spring boot 3.0(backend) + ionic (frontend) Oauth2 google

I not really understand of concept how exactly I have to link front with back in clue oauth2. I see few library in spring witch oauht2-client and oauth2-resource-server. As client use ionic of application which get token from google and then send…
-2
votes
1 answer

Logout in a thymeleaf client when we use oauth2

I have 3 application, one for authorization, one with resource (api rest) and one client in thymeleaf who consume the rest. When I log out of my client, that don't seem to be a real log out, because when i click on login, that login me directly...…
1 2 3
47
48