我试图在我的应用程序中使用spring security来开发restful web服务,而不是直接向j_spring_security_check发送请求,以便我可以提供与web服务相同的url来授权用户名和密码。
目前我正在使用以下请求模式:
URL:“http://localhost:8080/CabFMS/j_spring_security_check” 内容类型:application/x-www-form-urlencoded 正文:{'j_username':'user','j_password':'123'}
响应:是错误的凭据
我不确定 Content-type 和 body 参数。请提供建议。要发送请求,我正在使用 REST 客户端
塔伦古普塔