Authing DocsDocuments
Concept
workflow
Guides
Development Integration
Application integration
Concept
workflow
Guides
Development Integration
Application integration
Old Version
Development Integration
  • Single Sign-On (SSO)
  • Login component

  • JavaScript/Node.js

  • Java / Kotlin

  • Python

  • C#

  • PHP

  • Go

  • Ruby
  • Android

  • iOS

    • Quick start
    • Auth Flow
    • APIs

    • Third-party identity source

      • Wechat
      • Apple
      • Google
      • Facebook
      • Wechat Miniprogram
      • Tencent
      • Sina Weibo
      • Baidu
      • LinkedIn
      • Github
      • Gitee
      • GitLab
      • Xiaomi
      • WeCom
      • Lark
      • DingTalk
      • Line
      • Slack
    • Typical scene

    • On-premise
    • WebAuthn
    • Error Code List
  • Flutter

  • React Native
  • WeChat Mini Program
  • WeChat webpage authorization
  • Framework Integration
  • Error code
  1. Development Integration
  2. /
  3. iOS
  4. /
  5. Third-party identity source
  6. /
  7. Line

¶ Line Login

Update Time: 2025-05-14 08:32:28
Edit

¶ Preparation

Configure in Line Development Platform (opens new window) and Authing Console (opens new window), please refer to [Line Access Preparation](. ./../../guides/connections/social/line-mobile/README.md) and [Line iOS access document](https://developers.line.biz/en/docs/ios-sdk/swift /integrate-line-login/).


¶ Integrated Line login

¶ Step 1: Add Line dependency

  1. Enter: https://github.com/Authing/authing-binary in the swift package search bar.

  2. Select Authing-binary (opens new window).

Authing-binary (opens new window) depends on Guard-iOS SDK (opens new window).

  1. Select Up to Next Major Version 1.0.0 for the dependency rule.

  2. Check Line after Add Package.

Line depends on the version after Guard-iOS 1.4.5 (opens new window).


¶ Step 2: Set up Associated Domains:

Fill in the host corresponding to the developer's Universal Link.


¶ Step 3: Initialize Line login

import Guard
import Line

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
     Authing.start(<#AUTHING_APP_ID#>)
     // channelID: Line open platform channelID
     // universalLink: UniversalLink filled in by the Line open platform
     Line.register(channelID: <#your_line_channelId#>, universalLinkURL: <#your_line_universalLink#>)
}

¶ Step 4: Handle the Line login callback

After Line returns to the application, if SceneDelegate is used, the following function needs to be overloaded in SceneDelegate.swift:

func scene(_ scene: UIScene, continue userActivity: NSUserActivity) {
     _ = Line. application(. shared, open: url)
}

func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
     _ = Line. application(. shared, open: url)
}

If SceneDelegate is not used, it needs to be overloaded in AppDelegate:

func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
     return Line. application(application, open: url)
}

func application(_ app: UIApplication, open url: URL, options: [UIApplication. OpenURLOptionsKey : Any] = [:]) -> Bool {
     return Line. application(app, open: url)
}

¶ Step 5: Initiate Line login authorization

¶ Line authorization login

func login(viewController: UIViewController, permissions: [String] = ["openid","profile"], completion: @escaping Authing.AuthCompletion) -> Void

example

Line.login(viewController: <#ViewController#>) { code, message, userInfo in
     if (code == 200) {
         // login successful
         // userInfo
     }
}

If the developer integrates Line login by himself, after getting the accessToken, he can call the following API in exchange for Authing user information:

¶ Login via Line Authorization Code

func loginByLine(_ accessToken: String, _ idToken: String? = nil, completion: @escaping(Int, String?, UserInfo?) -> Void)

parameter

accessToken Line accessToken idToken Line idToken

example

AuthClient().loginByLine(<#accessToken#>, <#idToken#>) { code, message, userInfo in
     if (code == 200) {
         // userInfo: user information
     }
}
Prev: DingTalk Next: Slack
  • Preparation
  • Integrated Line login

User identity management

Integrated third-party login
Mobile phone number flash check (opens new window)
Universal login form component
Custom authentication process

Enterprise internal management

Single Sign On
Multi-factor Authentication
Authority Management

Developers

Development Document
Framework Integration
Blog (opens new window)
GitHub (opens new window)
Community User Center (opens new window)

Company

400 888 2106
sales@authing.cn
16 / F, Block B, NORTH STAR CENTURY CENTER, Beijing(Total)
room 406, 4th floor, zone B, building 1, No. 200, Tianfu Fifth Street, Chengdu(branch)

Beijing ICP No.19051205-1

© Beijing Steamory Technology Co.