-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
public enum SocialPlatform { | ||
|
||
KAKAO("kakao"), | ||
APPLE("apple") | ||
; | ||
|
||
private final String value; | ||
|
10 changes: 10 additions & 0 deletions
10
src/main/java/sopt/org/HMH/global/auth/social/apple/fegin/AppleFeignClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package sopt.org.HMH.global.auth.social.apple.fegin; | ||
|
||
import org.springframework.cloud.openfeign.FeignClient; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
|
||
@FeignClient(name = "appleFeignClient", url = "${oauth2.apple.base-url}") | ||
public interface AppleFeignClient { | ||
@GetMapping("/auth/keys") | ||
This comment has been minimized.
Sorry, something went wrong. |
||
ApplePublicKeys getApplePublicKeys(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
P3. Kakao Interface에서 처럼 빈 줄로 띄워두면 좋을 것 같아요!