π LINE Login Scopes
| Scope | Data(EN) | Data(KR) | Justification (for review submission) |
|---|---|---|---|
| profile | User ID, display name | μ¬μ©μ ID, μ΄λ¦ | We request the profile scope to identify the user and display their name and profile image in the service interface. This is essential for login and personalization. |
| openid | OpenID Connect ID token | μ±/μ±λ λ¨μ κ³ μ μλ³μ | We request the openid scope to securely authenticate users using the standard OpenID Connect protocol. This is necessary to verify the userβs identity on our platform. |
| Email address | μ΄λ©μΌ μ£Όμ | We request the email scope to create or link user accounts within our system and to provide account recovery and notification services. This ensures proper account management. |
|
| (Optional) profile+ (e.g., gender, birthdate, phone, address) | Additional personal information (e.g., gender, date of birth, phone number, postal address) | μ±λ³, μμΌ, μ νλ²νΈ, μ£Όμ, μ°νΈλ²νΈ λ± | We only request additional profile+ data if required by specific services, such as age verification for restricted content, or phone number for secure reservation confirmation. These are requested only when strictly necessary. |
**ID Token μμ**
{
"iss": "<https://access.line.me>",
"sub": "U1234567890abcdef1234567890abcdef", // μ¬μ©μ κ³ μ ID
"aud": "1234567890", // λ°κΈλ μ±(Channel) ID
"exp": 1504169092, // ν ν° λ§λ£ μκ° (UNIX time)
"iat": 1504165492, // ν ν° λ°κΈ μκ° (UNIX time)
"nonce": "09876-54321", // μμ² μ λ³΄λΈ nonce (μ¬μ 곡격 λ°©μ§)
"amr": ["pwd"], // μΈμ¦ μλ¨ (μ: password)
"name": "Taro Line", // μ¬μ©μμ LINE νμ μ΄λ¦ (profile scope νμ)
"picture": "https://sample_line.me/aBcdefg12345.png", // νλ‘ν μ΄λ―Έμ§ URL (profile scope νμ)
"email": "[email protected]" // μ΄λ©μΌ (email scope νμ)
}
π Facebook Login Scopes
| Scope | Data(EN) | Data(KR) | Justification (for review submission) |
|---|---|---|---|
| public_profile (default) | User ID, name | μ¬μ©μ ID, μ΄λ¦ | We request the public_profile scope to identify the user and display their basic profile information in our service. |
| Email address | μ΄λ©μΌ μ£Όμ | We request the email scope to create or link user accounts in our CRM, and to support account recovery and essential notifications. |
|
| (Optional) user_gender, user_birthday, user_friends | Gender, birthday, friend list | μ±λ³, μμΌ, μΉκ΅¬ 리μ€νΈ λ± | We only request additional information if required for specific services (e.g., age verification or personalized recommendations). These scopes are requested only when strictly necessary and are accompanied by clear user consent. |