未映射Spring oauth2 / token POST方法

时间:2015-02-25 09:57:25

标签: java spring oauth spring-security spring-security-oauth2

我使用org.springframework.security.oauth设置了oauth服务器:spring-security-oauth2:2.0.5.RELEASE lib。 我无法使用密码授权来使用资源所有者凭据对客户端进行身份验证。 我使用 RFC 6749 - 4.3。资源所有者密码凭据授予 - 方案。

发送类似请求:

 POST /token HTTP/1.1
 Host: server.example.com
 Authorization: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW
 Content-Type: application/x-www-form-urlencoded
 grant_type=password&username=johndoe&password=A3ddj3w

我得

 HTTP/1.1 405 Method Not Allowed

未映射此端点。 是春天oauth2问题吗?

0 个答案:

没有答案