
npm install @classmethod/lifft-upLet's lift up your LIFF apps 🏋️
Feature collections to realize your creativity.
- authorizer with OAuth provided by LINE Corp
``console
cd /your/working/dir
npm install @classmethod/lifft-up
// or
yarn add @classmethod/lifft-up
`
Authentication by IDToken.
` typescript
import * as lifftUp from '@classmethod/lifft-up'
(async () => {
 // https://developers.line.biz/en/reference/liff/#get-id-token
 const idToken =
 // Specify Liff Channel ID.
 const clientId =
 // The IDToken payload will be returned.
 const payload = await lifftUp.authorizer(idToken, clientId)
})()
``