我已在我的应用程序中配置了Spring OAuth 2.0。我正在使用高级休息客户端请求访问令牌。这有效,当我在有效负载中传递scope = read或scope = write时,我会收到一个令牌作为响应。
但是当我在同一个请求中同时发送读写时,它给出了一个错误,说“500 Internal Server Error”。 对于读写请求,我发送的有效负载是:
grant_type=password&scope=read+write&client_id=BankingModule&client_secret=B90-388F-4EE-9758-CDA602&username=myuser&password=password
请帮帮我。