Skip to content

Commit 02af476

Browse files
authored
Update web-native-protocol.md
1 parent bf485e9 commit 02af476

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/web-native-protocol.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# 웹-네이티브 통신 프로토콜
22

33
1. `sendMessageToWebView` : 네이티브 앱에서 웹뷰로 메시지를 보내는 함수
4-
54
2. `sendMessageToNative` : 웹뷰에서 네이티브 앱으로 메시지를 보내는 함수
65

76
## 1. 메시지 구조
@@ -21,7 +20,7 @@
2120
## 2. 메시지 타입
2221

2322
```tsx
24-
type MessageType = 'TOKEN' | 'PAGE_CHANGE' | 'TOKEN_EXPIRED';
23+
type MessageType = 'TOKEN' | 'PAGE_CHANGE' | 'TOKEN_EXPIRED' | 'LOGOUT';
2524

2625
interface TokenPayload {
2726
token: string;
@@ -99,7 +98,9 @@ interface NativeMessage {
9998
```json
10099
{
101100
"type": "TOKEN",
102-
"payload": "토큰 값"
101+
"payload": {
102+
"token" : "토큰 값"
103+
}
103104
}
104105
```
105106

0 commit comments

Comments
 (0)