spring oauth2 authorization code flow , configuration for VK (Vkontakte)
问题 I'm using social network Vkontakte as Oauth2 authorization server. So I have several steps: 1) get code with request with request_type=code 2) get accessToken when I send request to access token uri So I want to use Spring Oauth2, but I should get authorization code first, then access token, i've tried to add to application.yml : authorized-grant-types: authorization_code it's my application.yml: security: oauth2: client: clientId: [clientId] clientSecret: [clientSecret] accessTokenUri: https