From e77f2f9cc3ba5d0ef564ba7ffcd23e829704840c Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 20 Dec 2019 17:29:33 +0300 Subject: Fix mappings --- src/main/java/com/juick/server/api/ApiSocialLogin.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/juick/server/api/ApiSocialLogin.java b/src/main/java/com/juick/server/api/ApiSocialLogin.java index 0dbdd09f..a2b80932 100644 --- a/src/main/java/com/juick/server/api/ApiSocialLogin.java +++ b/src/main/java/com/juick/server/api/ApiSocialLogin.java @@ -285,8 +285,8 @@ public class ApiSocialLogin { return ResponseEntity.status(HttpStatus.FORBIDDEN).body(null); } } - @GetMapping("/_apple") - public String doAppleApiLogin(@RequestParam(required = false) String code, @RequestParam String state) { + @GetMapping("/api/_apple") + public String doAppleLogin(@RequestParam(required = false) String code, @RequestParam String state) { if (StringUtils.isBlank(code)) { String astate = UUID.randomUUID().toString(); crosspostService.addVKState(astate, state); @@ -294,8 +294,8 @@ public class ApiSocialLogin { } throw new HttpBadRequestException(); } - @PostMapping("/_apple") - public String doVerifyAppleResponseAPI(@RequestParam Map body) throws InterruptedException, ExecutionException, IOException, ParseException, JOSEException, BadJOSEException { + @PostMapping("/api/_apple") + public String doVerifyAppleResponse(@RequestParam Map body) throws InterruptedException, ExecutionException, IOException, ParseException, JOSEException, BadJOSEException { OAuth2AccessToken token = appleSignInService.getAccessToken(body.get("code")); var jsonNode = jsonMapper.readTree(token.getRawResponse()); var idToken = jsonNode.get("id_token").textValue(); -- cgit v1.2.3