Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
urinaner authored Nov 6, 2024
1 parent 2c3481d commit 91d47ba
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
```

Expand All @@ -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());
Expand All @@ -114,4 +106,4 @@ public class Main {
## 주의사항

- **네트워크 연결**: 이 프로그램은 네트워크 연결이 필요합니다.
- **예외 처리**: 네트워크 오류, 로그인 실패 등의 상황에서 `RuntimeException`이 발생할 수 있습니다.
- **예외 처리**: 네트워크 오류, 로그인 실패 등의 상황에서 `RuntimeException`이 발생할 수 있습니다.

0 comments on commit 91d47ba

Please sign in to comment.