1
我有我自己的映射setCred/
,當它通過http調用POST
請求時,它返回403錯誤。但是,當我刪除@EnableOAuth2Sso
它一切正常。 我不知道我在這裏失去了什麼部分。Spring安全中的@EnableOAuth2Sso後的錯誤403
@EnableOAuth2Sso
@Controller
public class TestAPI {
@RequestMapping(value = "/setCred", method = RequestMethod.POST, consumes = "application/json", produces = "text/plain")
public ResponseEntity<?> setCred(@RequestBody StringToken json) throws JsonParseException, JsonMappingException, IOException {
ResponseEntity<?> res = null;
....
我的最終目標是在我的網頁(從https://spring.io/guides/tutorials/spring-boot-oauth2/)
添加facebook login
我也得到了security.basic.enabled=false
我application.properties