liff-playground icon indicating copy to clipboard operation
liff-playground copied to clipboard

An example app to show the usage of LIFF's API functions

LIFF Playground

This is a web application that allows you to try out the basic features of the LINE Front-end Framework (LIFF). For example, you can deploy the following playground to your server.

Table of contents

  • Preparation
    1. Get a LIFF ID
    2. Set the LIFF ID
  • Usage
    • Run on local
    • Deploy to a server

Preparation

1. Get a LIFF ID

To start the LIFF Playground, you need to obtain a LIFF ID from the LINE Developers Console. Follow the steps below to obtain a LIFF ID.

2. Set the LIFF ID

Set the LIFF ID obtained in the above procedure as an environment variable. Open .env and set the LIFF ID.

VITE_LIFF_ID="Your LIFF ID"

Usage

This section shows two ways to run it on local and deploy it on a server.

Run on local

To run the LIFF Playground on local, first install the dependent packages. Then run the application.

$ yarn
$ yarn dev

This will start it up. When you access the URL shown in the terminal, you can see the LIFF Playground.

Incidentally, the LIFF application endpoint requires HTTPS. To start the local server with HTTPS, run the following command instead of yarn dev.

$ yarn dev:https

Deploy to a server

This section shows an example of deploying LIFF Playground to Netlify. Install the Netlify CLI beforehand.

The following commands will build the source code and deploy it to Netlify.

$ netlify build
$ netlify deploy --prod

After executing the above, the LIFF Playground will be deployed on Netlify. And the URL of the deployed page will be displayed in the terminal.

Then register this URL on the LINE Developers Console. Register this URL as the Endpoint URL in the LIFF app settings page. See Adding a LIFF app to your channel for instructions on how to register.

That's it! The LIFF Playground will appear when you access the deployed URL. You can confirm that LINE Login and other features work properly.