Skip to content

Commit

Permalink
fix : @RequestBody 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
1000kkannoo committed Aug 10, 2024
1 parent b269f8f commit eded290
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public CustomResponseEntity<Void> updateInsureBoarding(

@PostMapping("/callback/apple")
public String test(
MultiValueMap<String, Object> request
@RequestBody MultiValueMap<String, Object> request
) {
// 전달 받은 data에서 token 값 저장
String id_token = request.get("id_token").toString();
Expand Down

0 comments on commit eded290

Please sign in to comment.