我可以在用户请求访问令牌以及身份验证失败时进行记录

时间:2019-06-28 14:56:23

标签: spring-boot spring-security-oauth2 spring-oauth2

我有一个使用Spring Boot 2和Spring Boot的oauth2模块一起使用的oauth2服务器。这很好用,用户登录时会收到令牌。目前,我正在使用这样的EventListener在用户登录时进行登录:

Failures:

  1) my own reduce-like methods reduce_to_total returns a running total when given a starting point reduces correctly
     Failure/Error: expect(reduce_to_total(source_array, starting_point)).to eq(106)

       expected: 106
            got: 6

       (compared using ==)
     # ./spec/map_and_reduce_spec.rb:42:in `block (3 levels) in <top (required)>

问题是,每当有人通过身份验证时,都会执行此事件侦听器。因此,这也意味着当另一个(微)服务使用访问令牌从oauth2服务获取用户数据时,将执行该服务。我只想在使用/ oauth / token URL请求访问令牌时进行记录。有人有主意吗?

0 个答案:

没有答案