<aside> ๐ก What is an MPA? A Multi-Page Application (MPA) is a traditional website, a web application that consists of multiple independent HTML pages. Each time a user navigates between pages, a new HTML page is requested from the server and the entire page is reloaded.
</aside>
[This document is a guide for developers ].
Table of Contents.
When the logout execution is successful, call the following functions to collect activity information:
TCS.logout();
<footer></footer> tag or the bottom area of the pageWhere to call the function:
Call the function belowduring thesignup integration completion step or login integration completion step.
However, if you receive additional signup forms on your site after integration, this function call is not necessary.
TCS.sendMamber(JsonObject); // ์ธ์๋ String json์ด ์๋ JsonObject์
๋๋ค.
Required fields and descriptions:
| Key | Value | Description | Required or not |
|---|---|---|---|
| type | String | Join: join / Login: login |
Y |
| snsCode | String | SNS login/signup code (see below) | Y |
| memberId | String | Member ID | Y |
| memberName | String | Member name | N |
| String | Subscriber email | N | |
| phoneNumber | String | Subscriber phone number | N |
| gender | String | Subscriber gender (female: F / male: M) |
N |
| smsAllowed | String | Whether to receive text messages(Y/N) |
N |
| emailAllowed | String | Allowed to receive emails(Y/N) |
N |
Example:
{
"type": "join",
"snsCode": "00001",
"memberId": "gildong1234",
"memberName": "ํ๊ธธ๋",
"email": "[email protected]",
"phoneNumber": "01012340000",
"gender": "M",
"smsAllowed": "Y",
"emailAllowed": "N"
}
SNS login/signup code:
00001: Kakao00002: Naver00003: Facebook00004: Instagram09000: Other (including general login/signup)