我在项目中实现了Spring Security Oauth。
我的项目中有2个不同的模块:
Module A
Module B
我已使用XML定义在Module A
中实现了我的Oauth配置。这是成功的,我可以在点击网址时成功生成访问令牌和刷新令牌:/oauth/token
现在module B
在pom.xml
上具有依赖关系(在module A
中定义)。当我试图从模块B点击/oauth/token
时:它给了我以下异常:
InsufficientAuthenticationException:
There is no client authentication. Try adding an appropriate authentication filter.
当以下条件为真时,在第74行的TokenEndpoint
中会发生这种情况:
!(principal instanceof Authentication)
有人可以指导我可能出现的问题,我该如何解决这个问题?
谢谢, Jubin