From 91d47ba63ba248c078913d3feeb5d4ffcdb9eed9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9E=A5=EC=98=81=EC=9E=AC?= Date: Wed, 6 Nov 2024 15:28:31 +0900 Subject: [PATCH] Update README.md --- README.md | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 6c41d33..a8802ae 100644 --- a/README.md +++ b/README.md @@ -63,20 +63,13 @@ SejongAuth/ ## 사용법 -### 1. `LoginRequestDto` 생성 -로그인 요청 객체를 생성합니다. - -```java -LoginRequestDto loginRequestDto = new LoginRequestDto("userId", "password"); -``` - -### 2. 로그인 및 프로필 조회 +### 1. 로그인 및 프로필 조회 `Sj.login()` 메서드를 사용하여 로그인 및 프로필 정보를 조회할 수 있습니다. ```java -ProfileRes profile = Sj.login(loginReq); +SjProfile profile = Sj.login("학번", "비밀번호"); System.out.println("User profile: " + profile); ``` @@ -90,10 +83,9 @@ System.out.println("User profile: " + profile); public class Main { public static void main(String[] args) { - LoginReq loginReq = new LoginReq("testUser", "testPassword"); try { - ProfileRes profile = Sj.login(loginReq); + ProfileRes profile = Sj.login("testUser", "testPassword"); System.out.println("Login successful. User profile: " + profile); } catch (RuntimeException e) { System.err.println("Login failed: " + e.getMessage()); @@ -114,4 +106,4 @@ public class Main { ## 주의사항 - **네트워크 연결**: 이 프로그램은 네트워크 연결이 필요합니다. -- **예외 처리**: 네트워크 오류, 로그인 실패 등의 상황에서 `RuntimeException`이 발생할 수 있습니다. \ No newline at end of file +- **예외 처리**: 네트워크 오류, 로그인 실패 등의 상황에서 `RuntimeException`이 발생할 수 있습니다.